URL |
DefaultKeycloakClient.computeIntrospectionEndpointURL(URL tokenEndpointURL) |
|
URL |
KeycloakClient.computeIntrospectionEndpointURL(URL tokenEndpointURL) |
Compute the keycloak introspection endpoint URL starting from the provided token endpoint.
|
URL |
DefaultKeycloakClient.getIntrospectionEndpointURL(URL realmBaseURL) |
|
URL |
KeycloakClient.getIntrospectionEndpointURL(URL realmBaseURL) |
Constructs the Keycloak introspection 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.
|
URL |
DefaultKeycloakClient.getTokenEndpointURL(URL realmBaseURL) |
|
URL |
KeycloakClient.getTokenEndpointURL(URL realmBaseURL) |
Constructs the Keycloak token endpoint URL from the realm's base URL.
|
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 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(URL tokenURL,
String authorization) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCToken(URL tokenURL,
String clientId,
String clientSecret) |
|
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(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 |
DefaultKeycloakClient.queryOIDCTokenOfUser(String context,
String clientId,
String clientSecret,
String username,
String password) |
|
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 |
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(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 |
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(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 |
DefaultKeycloakClient.queryOIDCTokenWithContext(String context,
String authorization,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(String context,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String authorization,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.queryOIDCTokenWithContext(URL tokenURL,
String clientId,
String clientSecret,
String audience) |
|
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(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 |
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.
|