@UESComponent public interface AccessTokenProvider
Modifier and Type | Method and Description |
---|---|
java.lang.String |
generateUrlSafeToken(AccessToken token) |
boolean |
isSignatureValid(AccessToken token) |
AccessToken |
parseToken(java.lang.String token) |
void |
signToken(AccessToken token)
Generate and set the token signature.
|
token
- token to be signed.token
- The AccessToken to be checked for valid signature. Should have filled all attributes.token
- The token structure to be marshaled.token
- The String representation of the token to be parsed. The String should be generated by AccessTokenProvider.generateUrlSafeToken(AccessToken)