Class AuthzClient
This is class serves as an entry point for clients looking for access to Keycloak Authorization Services.
When creating a new instances make sure you have a Keycloak Server running at the location specified in the client configuration. The client tries to obtain server configuration by invoking the UMA Discovery Endpoint, usually available from the server at http(s)://{server}:{port}/auth/realms/{realm}/.well-known/uma-configuration.
- Author:
- Pedro Igor
- 
Method SummaryModifier and TypeMethodDescriptionCreates aAuthorizationResourceinstance which can be used to obtain permissions from the server.authorization(String accessToken) Creates aAuthorizationResourceinstance which can be used to obtain permissions from the server.authorization(String userName, String password) Creates aAuthorizationResourceinstance which can be used to obtain permissions from the server.authorization(String userName, String password, String scope) static AuthzClientcreate()Creates a new instance.static AuthzClientcreate(InputStream configStream) Creates a new instance.static AuthzClientcreate(Configuration configuration) Creates a new instance.Obtains the client configurationReturns the configuration obtained from the server at the UMA Discovery Endpoint.Obtains an access token using the client credentials.obtainAccessToken(String userName, String password) Obtains an access token using the resource owner credentials.Creates aProtectionResourceinstance which can be used to access the Protection API.protection(String accessToken) Creates aProtectionResourceinstance which can be used to access the Protection API.protection(String userName, String password) Creates aProtectionResourceinstance which can be used to access the Protection API.
- 
Method Details- 
createCreates a new instance. This method expects a keycloak.jsonin the classpath, otherwise an exception will be thrown.- Returns:
- a new instance
- Throws:
- RuntimeException- in case there is no- keycloak.jsonfile in the classpath or the file could not be parsed
 
- 
createCreates a new instance. - Parameters:
- configStream- the input stream with the configuration data
- Returns:
- a new instance
- Throws:
- RuntimeException
 
- 
createCreates a new instance. - Parameters:
- configuration- the client configuration
- Returns:
- a new instance
 
- 
protectionCreates a ProtectionResourceinstance which can be used to access the Protection API.When using this method, the PAT (the access token with the uma_protection scope) is obtained for the client itself, using any of the supported credential types (client/secret, jwt, etc). - Returns:
- a ProtectionResource
 
- 
protectionCreates a ProtectionResourceinstance which can be used to access the Protection API.- Parameters:
- accessToken- the PAT (the access token with the uma_protection scope)
- Returns:
- a ProtectionResource
 
- 
protectionCreates a ProtectionResourceinstance which can be used to access the Protection API.When using this method, the PAT (the access token with the uma_protection scope) is obtained for a given user. - Returns:
- a ProtectionResource
 
- 
authorizationCreates a AuthorizationResourceinstance which can be used to obtain permissions from the server.- Returns:
- a AuthorizationResource
 
- 
authorizationCreates a AuthorizationResourceinstance which can be used to obtain permissions from the server.- Parameters:
- accessToken- the Access Token that will be used as a bearer to access the token endpoint
- Returns:
- a AuthorizationResource
 
- 
authorizationCreates a AuthorizationResourceinstance which can be used to obtain permissions from the server.- Parameters:
- userName- an ID Token or Access Token representing an identity and/or access context
- password-
- Returns:
- a AuthorizationResource
 
- 
authorization
- 
obtainAccessTokenObtains an access token using the client credentials.- Returns:
- an AccessTokenResponse
 
- 
obtainAccessTokenObtains an access token using the resource owner credentials.- Returns:
- an AccessTokenResponse
 
- 
getServerConfigurationReturns the configuration obtained from the server at the UMA Discovery Endpoint.- Returns:
- the ServerConfiguration
 
- 
getConfigurationObtains the client configuration- Returns:
- the Configuration
 
 
-