Class SessionTokenClaimKeys
java.lang.Object
com.broadleafcommerce.auth.resource.domain.SessionTokenClaimKeys
Contains constants that are used as keys for token claims for session tokens.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Though these are used inOAuth2SessionToken
, some of these claims are also used in access tokens. -
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The claim storing a String client ID for the current session.static final String
The claim storing a Date object for the current expiration of the token.static final String
The claim storing a Date object for the 'max' expiration of the tokenstatic final String
The claim storing a String user subject for the current session.static final String
The claim storing a user's ID for the current session. -
Method Summary
-
Field Details
-
USER_ID
The claim storing a user's ID for the current session.- See Also:
-
SUBJECT
The claim storing a String user subject for the current session.- See Also:
-
CLIENT_ID
The claim storing a String client ID for the current session.- See Also:
-
EXPIRATION_TIME
The claim storing a Date object for the current expiration of the token.- See Also:
-
MAX_EXPIRATION_TIME
The claim storing a Date object for the 'max' expiration of the token- See Also:
-