Uses of Class
org.forgerock.tokenhandler.TokenHandlerException
-
Packages that use TokenHandlerException Package Description org.forgerock.tokenhandler Provides token handler definition. -
-
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.
-