Package org.keycloak.admin.client
Class KeycloakBuilder
java.lang.Object
org.keycloak.admin.client.KeycloakBuilder
Provides a
Keycloak
client builder with the ability to customize the underlying
RESTEasy client
used to communicate with the Keycloak server.
Example usage with a connection pool size of 20:
Keycloak keycloak = KeycloakBuilder.builder() .serverUrl("https://sso.example.com/auth") .realm("realm") .username("user") .password("pass") .clientId("client") .clientSecret("secret") .resteasyClient(new ResteasyClientBuilderImpl() .connectionPoolSize(20) .build() .register(org.keycloak.admin.client.JacksonProvider.class, 100)) .build();
Example usage with grant_type=client_credentials
Keycloak keycloak = KeycloakBuilder.builder() .serverUrl("https://sso.example.com/auth") .realm("example") .grantType(OAuth2Constants.CLIENT_CREDENTIALS) .clientId("client") .clientSecret("secret") .build();
- Author:
- Scott Rossillo
- See Also:
-
Client
-
Method Summary
Modifier and TypeMethodDescriptionauthorization
(String auth) build()
Builds a new Keycloak client from this builder.static KeycloakBuilder
builder()
Returns a new Keycloak builder.clientSecret
(String clientSecret) resteasyClient
(jakarta.ws.rs.client.Client resteasyClient) Custom instance of resteasy client.useDPoP
(boolean useDPoP)
-
Method Details
-
serverUrl
-
realm
-
grantType
-
username
-
password
-
clientId
-
scope
-
clientSecret
-
resteasyClient
Custom instance of resteasy client. Please see the documentation for additional details regarding the compatibility- Parameters:
resteasyClient
- Custom RestEasy client- Returns:
- admin client builder
-
authorization
-
useDPoP
- Parameters:
useDPoP
- If true, then admin-client will add DPoP proofs to the token-requests and to the admin REST API requests. DPoP feature must be enabled on Keycloak server side to work properly. It is false by default. Parameter is supposed to be used with Keycloak server 26.4.0 or later as earlier versions did not support DPoP requests for admin REST API- Returns:
- admin client builder
-
build
Builds a new Keycloak client from this builder. -
builder
Returns a new Keycloak builder.
-