Uses of Class
com.nimbusds.jwt.JWTClaimsSet
-
Packages that use JWTClaimsSet Package Description com.nimbusds.jwt JSON Web Token (JWT) interfaces and classes.com.nimbusds.jwt.proc Framework for application-specific verification and decryption of JSON Web Tokens (JWTs). -
-
Uses of JWTClaimsSet in com.nimbusds.jwt
Methods in com.nimbusds.jwt that return JWTClaimsSet Modifier and Type Method Description JWTClaimsSetJWTClaimsSet.Builder. build()Builds a new JWT claims set.JWTClaimsSetEncryptedJWT. getJWTClaimsSet()JWTClaimsSetJWT. getJWTClaimsSet()Gets the claims set of the JSON Web Token (JWT).JWTClaimsSetPlainJWT. getJWTClaimsSet()JWTClaimsSetSignedJWT. getJWTClaimsSet()static JWTClaimsSetJWTClaimsSet. parse(String s)Parses a JSON Web Token (JWT) claims set from the specified JSON object string representation.static JWTClaimsSetJWTClaimsSet. parse(Map<String,Object> json)Parses a JSON Web Token (JWT) claims set from the specified JSON object representation.Methods in com.nimbusds.jwt with parameters of type JWTClaimsSet Modifier and Type Method Description TJWTClaimsSetTransformer. transform(JWTClaimsSet claimsSet)Transforms the specified JWT claims set into the desired type.Constructors in com.nimbusds.jwt with parameters of type JWTClaimsSet Constructor Description Builder(JWTClaimsSet jwtClaimsSet)Creates a new builder with the claims from the specified set.EncryptedJWT(JWEHeader header, JWTClaimsSet claimsSet)Creates a new to-be-encrypted JSON Web Token (JWT) with the specified header and claims set.PlainJWT(PlainHeader header, JWTClaimsSet claimsSet)Creates a new unsecured (plain) JSON Web Token (JWT) with the specified header and claims set.PlainJWT(JWTClaimsSet claimsSet)Creates a new unsecured (plain) JSON Web Token (JWT) with a defaultPlainHeaderand the specified claims set.SignedJWT(JWSHeader header, JWTClaimsSet claimsSet)Creates a new to-be-signed JSON Web Token (JWT) with the specified header and claims set. -
Uses of JWTClaimsSet in com.nimbusds.jwt.proc
Methods in com.nimbusds.jwt.proc that return JWTClaimsSet Modifier and Type Method Description JWTClaimsSetDefaultJWTClaimsVerifier. getExactMatchClaims()Returns the JWT claims that must match exactly.JWTClaimsSetDefaultJWTProcessor. process(EncryptedJWT encryptedJWT, C context)JWTClaimsSetDefaultJWTProcessor. process(JWT jwt, C context)JWTClaimsSetDefaultJWTProcessor. process(PlainJWT plainJWT, C context)JWTClaimsSetDefaultJWTProcessor. process(SignedJWT signedJWT, C context)JWTClaimsSetDefaultJWTProcessor. process(String jwtString, C context)JWTClaimsSetJWTProcessor. process(EncryptedJWT encryptedJWT, C context)Processes the specified encrypted JWT by decrypting it.JWTClaimsSetJWTProcessor. process(JWT jwt, C context)Processes the specified JWT (unsecured, signed or encrypted).JWTClaimsSetJWTProcessor. process(PlainJWT plainJWT, C context)Processes the specified unsecured (plain) JWT, typically by checking its context.JWTClaimsSetJWTProcessor. process(SignedJWT signedJWT, C context)Processes the specified signed JWT by verifying its signature.JWTClaimsSetJWTProcessor. process(String jwtString, C context)Parses and processes the specified JWT (unsecured, signed or encrypted).Methods in com.nimbusds.jwt.proc with parameters of type JWTClaimsSet Modifier and Type Method Description List<? extends Key>JWTClaimsSetAwareJWSKeySelector. selectKeys(JWSHeader header, JWTClaimsSet claimsSet, C context)Selects key candidates for verifying a signed JWT.voidDefaultJWTClaimsVerifier. verify(JWTClaimsSet claimsSet, C context)voidJWTClaimsSetVerifier. verify(JWTClaimsSet claimsSet, C context)Verifies selected or all claims from the specified JWT claims set.Constructors in com.nimbusds.jwt.proc with parameters of type JWTClaimsSet Constructor Description DefaultJWTClaimsVerifier(JWTClaimsSet exactMatchClaims, Set<String> requiredClaims)Creates a new JWT claims verifier.DefaultJWTClaimsVerifier(String requiredAudience, JWTClaimsSet exactMatchClaims, Set<String> requiredClaims)Creates new default JWT claims verifier.DefaultJWTClaimsVerifier(Set<String> acceptedAudience, JWTClaimsSet exactMatchClaims, Set<String> requiredClaims, Set<String> prohibitedClaims)Creates new default JWT claims verifier.
-