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) |
Exchanges a token for another access token for a specific client and a
specific audience
|
TokenResponse |
KeycloakClient.exchangeTokenForAccessToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
Exchanges a token for another access token for a specific client and a
specific audience
|
TokenResponse |
DefaultKeycloakClient.exchangeTokenForOfflineToken(String context,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
DefaultKeycloakClient.exchangeTokenForOfflineToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
|
TokenResponse |
KeycloakClient.exchangeTokenForOfflineToken(String context,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
Exchanges a token for another access and an offline refresh tokens for a
specific client and a specific audience
The refresh token will be of the offline type only if the original token has
the offline_access within its scopes
|
TokenResponse |
KeycloakClient.exchangeTokenForOfflineToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
Exchanges a token for another access and an offline refresh tokens for a
specific client and a specific audience
The refresh token will be of the offline type only if the original token has
the scope offline_access within its scopes
|
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) |
Exchanges a token for another access and a refresh tokens for a specific
client and a specific audience
|
TokenResponse |
KeycloakClient.exchangeTokenForRefreshToken(URL tokenURL,
String oidcAccessToken,
String clientId,
String clientSecret,
String audience) |
Exchanges a token for another access and a refresh tokens for a specific
client and a specific audience
|
static TokenResponse |
KeycloakClientHelper.getTokenForUser(String context,
String username,
String password) |
|
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.
|