Uses of Class
org.forgerock.tokenhandler.TokenHandlerException
-
Packages that use TokenHandlerException Package Description org.forgerock.json.jose.tokenhandler JWT implementation(s) ofTokenHandler
.org.forgerock.tokenhandler Provides token handler definition. -
-
Uses of TokenHandlerException in org.forgerock.json.jose.tokenhandler
Methods in org.forgerock.json.jose.tokenhandler that throw TokenHandlerException Modifier and Type Method Description String
JwtTokenHandler. generate(JsonValue state)
Deprecated.String
SecretsJwtTokenHandler. generate(JsonValue state)
void
JwtTokenHandler. validate(String snapshotToken)
Deprecated.void
SecretsJwtTokenHandler. validate(String snapshotToken)
JsonValue
JwtTokenHandler. validateAndExtractState(String snapshotToken)
Deprecated.JsonValue
SecretsJwtTokenHandler. validateAndExtractState(String snapshotToken)
-
Uses of TokenHandlerException in org.forgerock.tokenhandler
Subclasses of TokenHandlerException in org.forgerock.tokenhandler Modifier and Type Class Description class
ExpiredTokenException
An exception generated by aTokenHandler
on extraction when the token is expired.class
InvalidTokenException
An exception generated by aTokenHandler
on validation or extraction when the token is invalid.Methods in org.forgerock.tokenhandler that throw TokenHandlerException Modifier and Type Method Description String
TokenHandler. generate(JsonValue state)
Generates a new token using the state.void
TokenHandler. validate(String token)
Validates the passed token.JsonValue
TokenHandler. validateAndExtractState(String token)
Validates and parses the token, extracting any encapsulated state.
-