Interface JWTDetails
public interface JWTDetails
JSON Web Token (JWT) encoder / decoder details.
-
Method Summary
Modifier and TypeMethodDescriptioncom.nimbusds.jwt.JWTClaimsSet
Returns the JWT claims set.@Nullable com.nimbusds.jose.JOSEObjectType
getType()
Returns the JWT "typ" (type) header value to use.
-
Method Details
-
getType
@Nullable com.nimbusds.jose.JOSEObjectType getType()Returns the JWT "typ" (type) header value to use.- Returns:
- The "typ" (type) header value,
null
if none.
-
getJWTClaimsSet
com.nimbusds.jwt.JWTClaimsSet getJWTClaimsSet()Returns the JWT claims set.- Returns:
- The JWT claims set.
-