public interface JwtAssertionParameters
Modifier and Type | Method and Description |
---|---|
String |
getAudience()
Identifies the recipients the JWT is intended for.
|
long |
getExpiration()
The time at which the JWT will expire.
|
Map<String,String> |
getExtendedClaims()
Public and Private claims which must be included in the JWT.
|
String |
getIssuer()
Identifies the principal that issued the JWT.
|
String |
getSignatureAlgorithm()
Returns a string description of the Signature Algorithm to be used to sign this claim.
|
PrivateKeyStore |
getSignatureKey()
The signature key is the key that is used to sign the JWT.
|
String |
getSubject()
Identifies the principal that is the subject of the JWT.
|
String getSignatureAlgorithm()
String getIssuer()
String getSubject()
String getAudience()
long getExpiration()
PrivateKeyStore getSignatureKey() throws GeneralSecurityException, IOException
PrivateKeyStore
containing the key to be used to sign the JWT.GeneralSecurityException
IOException