Uses of Class
eu.webtoolkit.jwt.auth.IssuedToken
Packages that use IssuedToken
-
Uses of IssuedToken in eu.webtoolkit.jwt.auth
Methods in eu.webtoolkit.jwt.auth that return IssuedTokenModifier and TypeMethodDescriptionAbstractUserDatabase.idpTokenAdd(String value, WDate expirationTime, String purpose, String scope, String redirectUri, User user, OAuthClient authClient) Adds a newIssuedTokento the database and returns it.AbstractUserDatabase.idpTokenFindWithValue(String purpose, String scope) Finds a token in the database with a given value.Methods in eu.webtoolkit.jwt.auth with parameters of type IssuedTokenModifier and TypeMethodDescriptionAbstractUserDatabase.idpTokenExpirationTime(IssuedToken token) Gets the expiration time for a token.AbstractUserDatabase.idpTokenOAuthClient(IssuedToken token) Returns the authorization client (relying party) that is associated with the token.AbstractUserDatabase.idpTokenPurpose(IssuedToken token) Gets the token purpose (authorization_code, access_token, id_token, refresh_token).AbstractUserDatabase.idpTokenRedirectUri(IssuedToken token) Returns the redirect URI that was used with the token request.voidAbstractUserDatabase.idpTokenRemove(IssuedToken token) Removes an issued token from the database.AbstractUserDatabase.idpTokenScope(IssuedToken token) Gets the scope associated with the token.AbstractUserDatabase.idpTokenUser(IssuedToken token) Returns the user associated with the token.AbstractUserDatabase.idpTokenValue(IssuedToken token) Gets the value for a token.