Uses of Class
io.fusionauth.jwt.domain.JWT
Packages that use JWT
-
Uses of JWT in io.fusionauth.jwt
Methods in io.fusionauth.jwt that return JWTModifier and TypeMethodDescriptionDecode the JWT using one of they provided verifiers.Decode the JWT using one of they provided verifiers.JWTDecoder.decode(String encodedJWT, java.util.function.Function<String, Verifier> verifierFunction, java.util.function.Function<Header, String> keyFunction) Decode the JWT using one of they provided verifiers.Decode the JWT using one of they provided verifiers.JWTDecoder.decode(String encodedJWT, Map<String, Verifier> verifiers, java.util.function.Function<Header, String> keyFunction) Decode the JWT using one of they provided verifiers.static JWTJWTUtils.decodePayload(String encodedJWT) WARNING!! This is not a secure or safe way to decode a JWT, this will not perform any validation on the signature.Methods in io.fusionauth.jwt with parameters of type JWTModifier and TypeMethodDescriptionEncode the JWT to produce a dot separated encoded string that can be sent in an HTTP request header.Encode the JWT to produce a dot separated encoded string that can be sent in an HTTP request header. -
Uses of JWT in io.fusionauth.jwt.domain
Methods in io.fusionauth.jwt.domain that return JWTModifier and TypeMethodDescriptionAdd a claim to this JWT.JWT.setAudience(Object audience) JWT.setExpiration(java.time.ZonedDateTime expiration) JWT.setIssuedAt(java.time.ZonedDateTime issuedAt) JWT.setNotBefore(java.time.ZonedDateTime notBefore) JWT.setSubject(String subject) JWT.setUniqueId(String uniqueId)