- jsonBuilder() - Method in interface com.atlassian.jwt.writer.JwtJsonBuilderFactory
-
- jsonToJwt(String) - Method in interface com.atlassian.jwt.writer.JwtWriter
-
- JwsUnsupportedAlgorithmException - Exception in com.atlassian.jwt.exception
-
Thrown if an incoming JWT is signed using an unsupported algorithm.
- JwsUnsupportedAlgorithmException(String) - Constructor for exception com.atlassian.jwt.exception.JwsUnsupportedAlgorithmException
-
- JwsUnsupportedAlgorithmException(String, Throwable) - Constructor for exception com.atlassian.jwt.exception.JwsUnsupportedAlgorithmException
-
- JwsUnsupportedAlgorithmException(Throwable) - Constructor for exception com.atlassian.jwt.exception.JwsUnsupportedAlgorithmException
-
- Jwt - Interface in com.atlassian.jwt
-
A JSON Web Token.
- JWT_AUTH_HEADER_PREFIX - Static variable in class com.atlassian.jwt.JwtConstants.HttpRequests
-
The start of a valid Authorization header specifying a JWT message.
- JWT_AUTH_METHOD_NAME - Static variable in class com.atlassian.jwt.JwtConstants.AppLinks
-
- JWT_JSON_PAYLOAD_ATTRIBUTE_NAME - Static variable in class com.atlassian.jwt.JwtConstants.HttpRequests
-
Attribute name of where the JSON payload from the verified token is stored on incoming requests by the authentication filters
- JWT_PARAM_NAME - Static variable in class com.atlassian.jwt.JwtConstants
-
When the JWT message is specified in the query string of a URL then this is the parameter name.
- JWT_SUBJECT_ATTRIBUTE_NAME - Static variable in class com.atlassian.jwt.JwtConstants.HttpRequests
-
- JwtCannotRetrieveKeyException - Exception in com.atlassian.jwt.exception
-
- JwtCannotRetrieveKeyException(String) - Constructor for exception com.atlassian.jwt.exception.JwtCannotRetrieveKeyException
-
- JwtCannotRetrieveKeyException(String, Throwable) - Constructor for exception com.atlassian.jwt.exception.JwtCannotRetrieveKeyException
-
- JwtClaimVerifier - Interface in com.atlassian.jwt.reader
-
Interface for asserting that a JWT claim is valid.
- JwtClaimVerifiersBuilder - Interface in com.atlassian.jwt.reader
-
- JwtClaimWriter - Interface in com.atlassian.jwt.writer
-
Interface for writing a (custom) claim to a JWT.
- JwtConstants - Class in com.atlassian.jwt
-
- JwtConstants() - Constructor for class com.atlassian.jwt.JwtConstants
-
- JwtConstants.AppLinks - Class in com.atlassian.jwt
-
- JwtConstants.Claims - Class in com.atlassian.jwt
-
- JwtConstants.ClaimVerifiers - Class in com.atlassian.jwt
-
- JwtConstants.HttpRequests - Class in com.atlassian.jwt
-
- JwtExpiredException - Exception in com.atlassian.jwt.exception
-
Thrown if the JWT's timestamps show that it has expired.
- JwtExpiredException(Date, Date, int) - Constructor for exception com.atlassian.jwt.exception.JwtExpiredException
-
- jwtId(String) - Method in interface com.atlassian.jwt.writer.JwtJsonBuilder
-
Sets the 'jti' parameter.
- JwtInvalidClaimException - Exception in com.atlassian.jwt.exception
-
Thrown if an expected claim is missing or the value of a reserved claim did not match its expected format.
- JwtInvalidClaimException(String) - Constructor for exception com.atlassian.jwt.exception.JwtInvalidClaimException
-
- JwtInvalidClaimException(String, Throwable) - Constructor for exception com.atlassian.jwt.exception.JwtInvalidClaimException
-
- JwtIssuerLacksSharedSecretException - Exception in com.atlassian.jwt.exception
-
Thrown if a JWT requires a shared secret to sign or verify (e.g.
- JwtIssuerLacksSharedSecretException(String) - Constructor for exception com.atlassian.jwt.exception.JwtIssuerLacksSharedSecretException
-
- JwtJsonBuilder - Interface in com.atlassian.jwt.writer
-
Utility for generating JSON payloads for JWTs.
- JwtJsonBuilderFactory - Interface in com.atlassian.jwt.writer
-
- JwtMalformedSharedSecretException - Exception in com.atlassian.jwt.exception
-
Thrown if a malformed secret key is passed to verify a JWT (e.g.
- JwtMalformedSharedSecretException(String, Throwable) - Constructor for exception com.atlassian.jwt.exception.JwtMalformedSharedSecretException
-
- JwtMissingClaimException - Exception in com.atlassian.jwt.exception
-
- JwtMissingClaimException(String) - Constructor for exception com.atlassian.jwt.exception.JwtMissingClaimException
-
- JwtParseException - Exception in com.atlassian.jwt.exception
-
Indicates that the JWT was not well-formed, e.g.
- JwtParseException(String, Throwable) - Constructor for exception com.atlassian.jwt.exception.JwtParseException
-
- JwtParseException(Exception) - Constructor for exception com.atlassian.jwt.exception.JwtParseException
-
- JwtParseException(String) - Constructor for exception com.atlassian.jwt.exception.JwtParseException
-
- JwtParser - Interface in com.atlassian.jwt
-
Parses a jwt token without attempting to verify it.
- JwtReader - Interface in com.atlassian.jwt.reader
-
Parses and verifies
Jwts attached to incoming requests.
- JwtReaderFactory - Interface in com.atlassian.jwt.reader
-
- JwtService - Interface in com.atlassian.jwt
-
Verifies incoming
JWTs issued by linked applications and generates
JWTs for use in outbound
requests targeting linked applications.
- JwtSignatureMismatchException - Exception in com.atlassian.jwt.exception
-
Indicates that the JWT's signature does not match its contents or the shared secret for the specified issuer.
- JwtSignatureMismatchException(Exception) - Constructor for exception com.atlassian.jwt.exception.JwtSignatureMismatchException
-
- JwtSignatureMismatchException(String) - Constructor for exception com.atlassian.jwt.exception.JwtSignatureMismatchException
-
- JwtSignatureMismatchException(String, String) - Constructor for exception com.atlassian.jwt.exception.JwtSignatureMismatchException
-
- JwtSigningException - Exception in com.atlassian.jwt.exception
-
Thrown if a problem was encountered while signing a JWT.
- JwtSigningException(Exception) - Constructor for exception com.atlassian.jwt.exception.JwtSigningException
-
- JwtTooEarlyException - Exception in com.atlassian.jwt.exception
-
- JwtTooEarlyException(Date, Date, int) - Constructor for exception com.atlassian.jwt.exception.JwtTooEarlyException
-
- JwtUnknownIssuerException - Exception in com.atlassian.jwt.exception
-
Thrown if the issuer is not known (e.g.
- JwtUnknownIssuerException(String) - Constructor for exception com.atlassian.jwt.exception.JwtUnknownIssuerException
-
- JwtUserRejectedException - Exception in com.atlassian.jwt.exception
-
- JwtUserRejectedException(String) - Constructor for exception com.atlassian.jwt.exception.JwtUserRejectedException
-
- JwtVerificationException - Exception in com.atlassian.jwt.exception
-
Indicates a JWT was well-formed, but failed to validate.
- JwtVerificationException() - Constructor for exception com.atlassian.jwt.exception.JwtVerificationException
-
- JwtVerificationException(String) - Constructor for exception com.atlassian.jwt.exception.JwtVerificationException
-
- JwtVerificationException(String, Throwable) - Constructor for exception com.atlassian.jwt.exception.JwtVerificationException
-
- JwtVerificationException(Throwable) - Constructor for exception com.atlassian.jwt.exception.JwtVerificationException
-
- JwtWriter - Interface in com.atlassian.jwt.writer
-
Creates JWTs for arbitrary JSON payloads.
- JwtWriterFactory - Interface in com.atlassian.jwt.writer
-