URL |
DefaultKeycloakClient.computeIntrospectionEndpointURL(URL tokenEndpointURL) |
|
URL |
KeycloakClient.computeIntrospectionEndpointURL(URL tokenEndpointURL) |
Compute the keycloak introspection endpoint URL starting from the provided token endpoint.
|
protected TokenResponse |
DefaultKeycloakClient.exchangeToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience,
String requestedTokenType,
String scope) |
Queries from the OIDC server an exchanged token by using provided access token, for the given audience (context),
in URLEncoded form or not,
|
TokenResponse |
DefaultKeycloakClient.exchangeTokenForAccessToken(String context,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.exchangeTokenForAccessToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
KeycloakClient.exchangeTokenForAccessToken(String context,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
KeycloakClient.exchangeTokenForAccessToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.exchangeTokenForRefreshToken(String context,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.exchangeTokenForRefreshToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
KeycloakClient.exchangeTokenForRefreshToken(String context,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
KeycloakClient.exchangeTokenForRefreshToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
byte[] |
DefaultKeycloakClient.getAvatarData(String context,
TokenResponse tokenResponse) |
|
byte[] |
DefaultKeycloakClient.getAvatarData(URL avatarURL,
TokenResponse tokenResponse) |
|
byte[] |
KeycloakClient.getAvatarData(String context,
TokenResponse tokenResponse) |
|
byte[] |
KeycloakClient.getAvatarData(URL avatarURL,
TokenResponse tokenResponse) |
|
URL |
DefaultKeycloakClient.getAvatarEndpointURL(URL realmBaseURL) |
|
URL |
KeycloakClient.getAvatarEndpointURL(URL realmBaseURL) |
Constructs the Keycloak avatar endpoint URL from the realm's base URL.
|
URL |
DefaultKeycloakClient.getIntrospectionEndpointURL(URL realmBaseURL) |
|
URL |
KeycloakClient.getIntrospectionEndpointURL(URL realmBaseURL) |
Constructs the Keycloak introspection endpoint URL from the realm's base URL.
|
URL |
DefaultKeycloakClient.getJWKEndpointURL(URL realmBaseURL) |
|
URL |
KeycloakClient.getJWKEndpointURL(URL realmBaseURL) |
Constructs the Keycloak JWK endpoint URL from the realm's base URL.
|
URL |
DefaultKeycloakClient.getRealmBaseURL(String context) |
|
URL |
DefaultKeycloakClient.getRealmBaseURL(String context,
String realm) |
|
URL |
KeycloakClient.getRealmBaseURL(String context) |
Returns the Keycloak base URL for the given context and the default realm ( d4science)
|
URL |
KeycloakClient.getRealmBaseURL(String context,
String realm) |
Returns the Keycloak base URL for the given context and in the given realm.
|
PublishedRealmRepresentation |
DefaultKeycloakClient.getRealmInfo(URL realmURL) |
|
PublishedRealmRepresentation |
KeycloakClient.getRealmInfo(URL realmURL) |
Gets the realm info setup (RSA public_key, token-service URL,
account-service URL and tokens-not-before setting)
|
JSONWebKeySet |
DefaultKeycloakClient.getRealmJSONWebKeySet(URL jwkURL) |
|
JSONWebKeySet |
KeycloakClient.getRealmJSONWebKeySet(URL jwkURL) |
|
URL |
DefaultKeycloakClient.getTokenEndpointURL(URL realmBaseURL) |
|
URL |
KeycloakClient.getTokenEndpointURL(URL realmBaseURL) |
Constructs the Keycloak token endpoint URL from the realm's base URL.
|
static TokenResponse |
KeycloakClientHelper.getTokenForUser(String context,
String username,
String password) |
|
TokenIntrospectionResponse |
DefaultKeycloakClient.introspectAccessToken(String context,
String clientId,
String clientSecret,
String accessTokenJWTString) |
|
TokenIntrospectionResponse |
DefaultKeycloakClient.introspectAccessToken(URL introspectionURL,
String clientId,
String clientSecret,
String accessTokenJWTString) |
|
TokenIntrospectionResponse |
KeycloakClient.introspectAccessToken(String context,
String clientId,
String clientSecret,
String accessTokenJWTString) |
Introspects an access token against the Keycloak server.
|
TokenIntrospectionResponse |
KeycloakClient.introspectAccessToken(URL introspectionURL,
String clientId,
String clientSecret,
String accessTokenJWTString) |
Introspects an access token against the Keycloak server.
|
boolean |
DefaultKeycloakClient.isAccessTokenVerified(String context,
String clientId,
String clientSecret,
String accessTokenJWTString) |
|
boolean |
DefaultKeycloakClient.isAccessTokenVerified(URL introspectionURL,
String clientId,
String clientSecret,
String accessTokenJWTString) |
|
boolean |
KeycloakClient.isAccessTokenVerified(String context,
String clientId,
String clientSecret,
String accessTokenJWTString) |
Verifies an access token against the Keycloak server.
|
boolean |
KeycloakClient.isAccessTokenVerified(URL introspectionURL,
String clientId,
String clientSecret,
String accessTokenJWTString) |
Verifies an access token against the Keycloak server.
|
protected <T> T |
DefaultKeycloakClient.performRequest(Class<T> returnObjectClass,
URL url,
Map<String,String> headers,
Map<String,List<String>> params) |
|
protected TokenResponse |
DefaultKeycloakClient.performRequest(URL tokenURL,
Map<String,String> headers,
Map<String,List<String>> params) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(String context,
String authorization) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(String context,
String clientId,
String clientSecret) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(String context,
String clientId,
String clientSecret,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(String context,
String authorization,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(URL tokenURL,
String authorization) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(URL tokenURL,
String clientId,
String clientSecret) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(URL tokenURL,
String clientId,
String clientSecret,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(URL tokenURL,
String authorization,
Map<String,String> extraHeaders) |
|
TokenResponse |
KeycloakClient.queryOIDCToken(String context,
String authorization) |
Queries an OIDC token from the Keycloak server, by using provided authorization.
|
TokenResponse |
KeycloakClient.queryOIDCToken(String context,
String clientId,
String clientSecret) |
Queries an OIDC token from the context's Keycloak server, by using provided clientId and client secret.
|
TokenResponse |
KeycloakClient.queryOIDCToken(String context,
String clientId,
String clientSecret,
Map<String,String> extraHeaders) |
Queries an OIDC token from the context's Keycloak server, by using provided clientId and client secret.
|
TokenResponse |
KeycloakClient.queryOIDCToken(String context,
String authorization,
Map<String,String> extraHeaders) |
Queries an OIDC token from the Keycloak server, by using provided authorization.
|
TokenResponse |
KeycloakClient.queryOIDCToken(URL tokenURL,
String authorization) |
Queries an OIDC token from the Keycloak server, by using provided authorization.
|
TokenResponse |
KeycloakClient.queryOIDCToken(URL tokenURL,
String clientId,
String clientSecret) |
Queries an OIDC token from the Keycloak server, by using provided clientId and client secret.
|
TokenResponse |
KeycloakClient.queryOIDCToken(URL tokenURL,
String clientId,
String clientSecret,
Map<String,String> extraHeaders) |
Queries an OIDC token from the Keycloak server, by using provided clientId and client secret.
|
TokenResponse |
KeycloakClient.queryOIDCToken(URL tokenURL,
String authorization,
Map<String,String> extraHeaders) |
Queries an OIDC token from the Keycloak server, by using provided authorization.
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUser(String context,
String clientId,
String clientSecret,
String username,
String password) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUser(String context,
String clientId,
String clientSecret,
String username,
String password,
Map<String,String> extraHeaders) |
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUser(String context,
String clientId,
String clientSecret,
String username,
String password) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUser(String context,
String clientId,
String clientSecret,
String username,
String password,
Map<String,String> extraHeaders) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password.
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String authorization,
String username,
String password,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String clientId,
String clientSecret,
String username,
String password,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String clientId,
String clientSecret,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String authorization,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String authorization,
String username,
String password,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String clientId,
String clientSecret,
String username,
String password,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String clientId,
String clientSecret,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String authorization,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String authorization,
String username,
String password,
String audience) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String clientId,
String clientSecret,
String username,
String password,
String audience) |
Queries an OIDC token for a specific user from the Keycloak server, by using provided clientId and client secret and user's username and password, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String clientId,
String clientSecret,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token for a specific user from the Keycloak server, by using provided clientId and client secret and user's username and password, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(String context,
String authorization,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String authorization,
String username,
String password,
String audience) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String clientId,
String clientSecret,
String username,
String password,
String audience) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String clientId,
String clientSecret,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password, , reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenOfUserWithContext(URL tokenURL,
String authorization,
String username,
String password,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token for a specific user from the context's Keycloak server, by using provided clientId and client secret and user's username and password.
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(String context,
String authorization,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(String context,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(String context,
String clientId,
String clientSecret,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(String context,
String authorization,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String authorization,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String clientId,
String clientSecret,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String authorization,
String audience,
Map<String,String> extraHeaders) |
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(String context,
String authorization,
String audience) |
Queries an OIDC token from the Keycloak server, by using provided authorization, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(String context,
String clientId,
String clientSecret,
String audience) |
Queries an OIDC token from the context's Keycloak server, by using provided clientId and client secret, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(String context,
String clientId,
String clientSecret,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token from the context's Keycloak server, by using provided clientId and client secret, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(String context,
String authorization,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token from the Keycloak server, by using provided authorization, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String authorization,
String audience) |
Queries an OIDC token from the Keycloak server, by using provided authorization, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String clientId,
String clientSecret,
String audience) |
Queries an OIDC token from the Keycloak server, by using provided clientId and client secret, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String clientId,
String clientSecret,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token from the Keycloak server, by using provided clientId and client secret, reducing the audience to the requested one.
|
TokenResponse |
KeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String authorization,
String audience,
Map<String,String> extraHeaders) |
Queries an OIDC token from the Keycloak server, by using provided authorization, reducing the audience to the requested one.
|
TokenResponse |
DefaultKeycloakClient.queryUMAToken(String context,
String clientId,
String clientSecret,
String audience,
List<String> permissions) |
|
TokenResponse |
DefaultKeycloakClient.queryUMAToken(String context,
String authorization,
String audience,
List<String> permissions) |
|
TokenResponse |
DefaultKeycloakClient.queryUMAToken(String context,
TokenResponse oidcTokenResponse,
String audience,
List<String> permissions) |
|
TokenResponse |
DefaultKeycloakClient.queryUMAToken(URL tokenURL,
String clientId,
String clientSecret,
String audience,
List<String> permissions) |
|
TokenResponse |
DefaultKeycloakClient.queryUMAToken(URL tokenURL,
String authorization,
String audience,
List<String> permissions) |
|
TokenResponse |
DefaultKeycloakClient.queryUMAToken(URL tokenURL,
TokenResponse oidcTokenResponse,
String audience,
List<String> permissions) |
|
TokenResponse |
KeycloakClient.queryUMAToken(String context,
String clientId,
String clientSecret,
String audience,
List<String> permissions) |
Queries an UMA token from the Keycloak server, by using provided clientId and client secret for the given audience
(context), in URLEncoded form or not, and optionally a list of permissions.
|
TokenResponse |
KeycloakClient.queryUMAToken(String context,
String authorization,
String audience,
List<String> permissions) |
Queries an UMA token from the Keycloak server, by using provided authorization, for the given audience (context),
in URLEncoded form or not, and optionally a list of permissions.
|
TokenResponse |
KeycloakClient.queryUMAToken(String context,
TokenResponse oidcTokenResponse,
String audience,
List<String> permissions) |
Queries an UMA token from the Keycloak server, by using access-token provided by the TokenResponse object
for the given audience (context), in URLEncoded form or not, and optionally a list of permissions.
|
TokenResponse |
KeycloakClient.queryUMAToken(URL tokenURL,
String clientId,
String clientSecret,
String audience,
List<String> permissions) |
Queries an UMA token from the Keycloak server, by using provided clientId and client secret for the given audience
(context), in URLEncoded form or not, and optionally a list of permissions.
|
TokenResponse |
KeycloakClient.queryUMAToken(URL tokenURL,
String authorization,
String audience,
List<String> permissions) |
Queries an UMA token from the Keycloak server, by using provided authorization, for the given audience (context),
in URLEncoded form or not, and optionally a list of permissions.
|
TokenResponse |
KeycloakClient.queryUMAToken(URL tokenURL,
TokenResponse oidcTokenResponse,
String audience,
List<String> permissions) |
Queries an UMA token from the Keycloak server, by using access-token provided by the TokenResponse object
for the given audience (context), in URLEncoded form or not, and optionally a list of permissions.
|
TokenResponse |
DefaultKeycloakClient.refreshToken(String context,
String clientId,
String clientSecret,
String refreshTokenJWTString) |
|
TokenResponse |
DefaultKeycloakClient.refreshToken(String context,
String clientId,
String clientSecret,
TokenResponse tokenResponse) |
|
TokenResponse |
DefaultKeycloakClient.refreshToken(String context,
TokenResponse tokenResponse) |
|
TokenResponse |
DefaultKeycloakClient.refreshToken(URL tokenURL,
String clientId,
String clientSecret,
String refreshTokenJWTString) |
|
TokenResponse |
DefaultKeycloakClient.refreshToken(URL tokenURL,
String clientId,
String clientSecret,
TokenResponse tokenResponse) |
|
TokenResponse |
DefaultKeycloakClient.refreshToken(URL tokenURL,
TokenResponse tokenResponse) |
|
TokenResponse |
KeycloakClient.refreshToken(String context,
String clientId,
String clientSecret,
String refreshTokenJWTString) |
Refreshes a previously issued token from the Keycloak server by using the client id and secret
and the refresh token JWT encoded string obtained with the access token in the previous token response.
|
TokenResponse |
KeycloakClient.refreshToken(String context,
String clientId,
String clientSecret,
TokenResponse tokenResponse) |
Refreshes a previously issued token from the Keycloak server using the refresh token JWT encoded string in the
token response object and the provided client id and secret.
|
TokenResponse |
KeycloakClient.refreshToken(String context,
TokenResponse tokenResponse) |
Refreshes a previously issued token from the Keycloak server using the refresh token JWT encoded string in the
token response object.
|
TokenResponse |
KeycloakClient.refreshToken(URL tokenURL,
String clientId,
String clientSecret,
String refreshTokenJWTString) |
Refreshes a previously issued token from the Keycloak server by using the client id and secret
and the refresh token JWT encoded string obtained with the access token in the previous token response.
|
TokenResponse |
KeycloakClient.refreshToken(URL tokenURL,
String clientId,
String clientSecret,
TokenResponse tokenResponse) |
Refreshes a previously issued token from the Keycloak server using the refresh token JWT encoded string in the
token response object and the provided client id and secret.
|
TokenResponse |
KeycloakClient.refreshToken(URL tokenURL,
TokenResponse tokenResponse) |
Refreshes a previously issued token from the Keycloak server using the refresh token JWT encoded string in the
token response object.
|