Skip navigation links
A B C D E F G H I J K M N P R S T U V 

A

algorithm(SigningAlgorithm) - Method in class com.atlassian.asap.api.JwtBuilder
Sets the algorithm (alg) jws header.
algorithmName() - Method in enum com.atlassian.asap.api.AlgorithmType
 
AlgorithmType - Enum in com.atlassian.asap.api
 
audience(Iterable<String>) - Method in class com.atlassian.asap.api.JwtBuilder
Sets the audience (aud) claim.
audience(String...) - Method in class com.atlassian.asap.api.JwtBuilder
Sets the audience (aud) claim.
authenticateRequest(String) - Method in interface com.atlassian.asap.api.server.http.RequestAuthenticator
Authenticates a request by validating the given authorizationHeader according to the conventions.
AuthenticationFailedException - Exception in com.atlassian.asap.api.exception
Thrown when an incoming HTTP request cannot be authenticated using ASAP.
AuthenticationFailedException(String) - Constructor for exception com.atlassian.asap.api.exception.AuthenticationFailedException
 
AuthorizationFailedException - Exception in com.atlassian.asap.api.exception
Thrown when an incoming HTTP request is authentic but is not authorized.
AuthorizationFailedException(String) - Constructor for exception com.atlassian.asap.api.exception.AuthorizationFailedException
 
AuthorizationHeaderGenerator - Interface in com.atlassian.asap.api.client.http
HTTP clients can use this service to generate the value of the Authorization header to be included in outgoing requests.

B

BEARER_AUTHENTICATION_SCHEME - Static variable in class com.atlassian.asap.core.JwtConstants
The WWW-Authenticate header value for the bearer authentication scheme.
build() - Method in class com.atlassian.asap.api.JwtBuilder
 
buildVerifiableJwt(JWSObject, JWTClaimsSet) - Static method in class com.atlassian.asap.nimbus.parser.NimbusVerifiableJwt
Factory method to create a signature verifiable jwt.

C

CannotRetrieveKeyException - Exception in com.atlassian.asap.api.exception
Thrown when a cryptographic key is not available.
CannotRetrieveKeyException(String) - Constructor for exception com.atlassian.asap.api.exception.CannotRetrieveKeyException
 
CannotRetrieveKeyException(String, Throwable) - Constructor for exception com.atlassian.asap.api.exception.CannotRetrieveKeyException
 
ChainedKeyProvider - Class in com.atlassian.asap.core.keys.publickey
Looks up keys sequentially in a given list of key providers.
ClasspathPrivateKeyProvider - Class in com.atlassian.asap.core.keys.privatekey
Retrieves private keys from the classpath.
ClasspathPrivateKeyProvider(String, KeyReader) - Constructor for class com.atlassian.asap.core.keys.privatekey.ClasspathPrivateKeyProvider
Create instance of ClasspathPrivateKeyProvider that reads private keys under the given classpath base.
ClasspathPublicKeyProvider - Class in com.atlassian.asap.core.keys.publickey
Retrieves public keys from the classpath.
ClasspathPublicKeyProvider(String, KeyReader) - Constructor for class com.atlassian.asap.core.keys.publickey.ClasspathPublicKeyProvider
Create a provider that reads public keys under the given classpath base.
com.atlassian.asap - package com.atlassian.asap
Library that is used to create and verify json web tokens (JWT) for service to service authentication purposes using the ASAP protocol.
com.atlassian.asap.annotation - package com.atlassian.asap.annotation
 
com.atlassian.asap.api - package com.atlassian.asap.api
 
com.atlassian.asap.api.client.http - package com.atlassian.asap.api.client.http
 
com.atlassian.asap.api.exception - package com.atlassian.asap.api.exception
 
com.atlassian.asap.api.server.http - package com.atlassian.asap.api.server.http
 
com.atlassian.asap.core - package com.atlassian.asap.core
 
com.atlassian.asap.core.exception - package com.atlassian.asap.core.exception
 
com.atlassian.asap.core.keys - package com.atlassian.asap.core.keys
 
com.atlassian.asap.core.keys.privatekey - package com.atlassian.asap.core.keys.privatekey
 
com.atlassian.asap.core.keys.publickey - package com.atlassian.asap.core.keys.publickey
 
com.atlassian.asap.core.parser - package com.atlassian.asap.core.parser
 
com.atlassian.asap.core.serializer - package com.atlassian.asap.core.serializer
 
com.atlassian.asap.core.validator - package com.atlassian.asap.core.validator
 
com.atlassian.asap.nimbus.parser - package com.atlassian.asap.nimbus.parser
 
com.atlassian.asap.nimbus.serializer - package com.atlassian.asap.nimbus.serializer
 
copyJwt(Jwt) - Static method in class com.atlassian.asap.api.JwtBuilder
Returns a builder initialised with the given Jwt prototype.
createChainedKeyProvider(List<KeyProvider<PublicKey>>) - Static method in class com.atlassian.asap.core.keys.publickey.ChainedKeyProvider
Create a chained key provider representing a given list of key repository providers.
createDefault() - Static method in class com.atlassian.asap.core.keys.publickey.PublicKeyProviderFactory
 
createECDSASignerForKey(ECPrivateKey) - Method in class com.atlassian.asap.nimbus.serializer.NimbusJwtSerializer
 
createMirroredKeyProvider(List<KeyProvider<PublicKey>>) - Static method in class com.atlassian.asap.core.keys.publickey.MirroredKeyProvider
Create a mirrored key provider representing a given set of mirrored key repository providers.
createPrivateKeyProvider(URI) - Static method in class com.atlassian.asap.core.keys.privatekey.PrivateKeyProviderFactory
Creates an instance of KeyProvider.
createPublicKeyProvider(String) - Method in class com.atlassian.asap.core.keys.publickey.PublicKeyProviderFactory
Creates an instance of KeyProvider for the given base URL.
createRSASSASignerForKey(RSAPrivateKey) - Method in class com.atlassian.asap.nimbus.serializer.NimbusJwtSerializer
 

D

DATA_URI_PEM_HEADER - Static variable in class com.atlassian.asap.core.keys.DataUriKeyReader
 
DATA_URI_PKCS8_HEADER - Static variable in class com.atlassian.asap.core.keys.DataUriKeyReader
 
DataUriKeyProvider - Class in com.atlassian.asap.core.keys.privatekey
Key provider for keys embedded in data uri.
DataUriKeyProvider(URI, DataUriKeyReader) - Constructor for class com.atlassian.asap.core.keys.privatekey.DataUriKeyProvider
 
DataUriKeyReader - Class in com.atlassian.asap.core.keys
Reads keys encoded in a data uri.
DataUriKeyReader() - Constructor for class com.atlassian.asap.core.keys.DataUriKeyReader
 
DataUriUtil - Class in com.atlassian.asap.core.keys
 
DataUriUtil() - Constructor for class com.atlassian.asap.core.keys.DataUriUtil
 
DEFAULT_LIFETIME - Static variable in class com.atlassian.asap.api.JwtBuilder
Token lifetime, unless a specific lifetime is explicitly set.

E

EnvironmentVariableKeyProvider - Class in com.atlassian.asap.core.keys.privatekey
Reads private keys specified as data uri from environment variables.
equals(Object) - Method in class com.atlassian.asap.core.validator.ValidatedKeyId
 
expirationTime(Instant) - Method in class com.atlassian.asap.api.JwtBuilder
Sets the expiration time (exp) claim.

F

FieldsAreNonNullByDefault - Annotation Type in com.atlassian.asap.annotation
 
FilePrivateKeyProvider - Class in com.atlassian.asap.core.keys.privatekey
Reads private keys from the filesystem.
FilePrivateKeyProvider(File, KeyReader) - Constructor for class com.atlassian.asap.core.keys.privatekey.FilePrivateKeyProvider
Creates a new instance of FilePrivateKeyProvider.
FilePublicKeyProvider - Class in com.atlassian.asap.core.keys.publickey
Reads public keys from the filesystem.
FilePublicKeyProvider(File, PemReader) - Constructor for class com.atlassian.asap.core.keys.publickey.FilePublicKeyProvider
 
fromUri(URI, DataUriKeyReader) - Static method in class com.atlassian.asap.core.keys.privatekey.EnvironmentVariableKeyProvider
Instantiates the class by parsing a URL with the following syntax: env:///[BASE_ENV_VARIABLE_NAME].
fromUri(URI, DataUriKeyReader) - Static method in class com.atlassian.asap.core.keys.privatekey.SystemPropertyKeyProvider
Instantiates the class by parsing a URL with the following syntax: sysprop:///[BASE_SYSTEM_PROPERTY_NAME].

G

generateAuthorizationHeader(Jwt) - Method in interface com.atlassian.asap.api.client.http.AuthorizationHeaderGenerator
Generates an HTTP Authorization header that includes a signed JWT.
getAlgorithm() - Method in interface com.atlassian.asap.api.JwsHeader
 
getAudience() - Method in interface com.atlassian.asap.api.JwtClaims
 
getClaims() - Method in interface com.atlassian.asap.api.Jwt
 
getClaims() - Method in class com.atlassian.asap.nimbus.parser.NimbusVerifiableJwt
 
getExpiry() - Method in interface com.atlassian.asap.api.JwtClaims
 
getHeader() - Method in interface com.atlassian.asap.api.Jwt
 
getHeader() - Method in class com.atlassian.asap.nimbus.parser.NimbusVerifiableJwt
 
getIssuedAt() - Method in interface com.atlassian.asap.api.JwtClaims
 
getIssuer() - Method in interface com.atlassian.asap.api.JwtClaims
 
getJwtId() - Method in interface com.atlassian.asap.api.JwtClaims
 
getKey(ValidatedKeyId) - Method in interface com.atlassian.asap.core.keys.KeyProvider
Provides a Key for a validated key identifier.
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.privatekey.ClasspathPrivateKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.privatekey.DataUriKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.privatekey.FilePrivateKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.privatekey.NullKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.publickey.ChainedKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.publickey.ClasspathPublicKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.publickey.FilePublicKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.publickey.HttpPublicKeyProvider
 
getKey(ValidatedKeyId) - Method in class com.atlassian.asap.core.keys.publickey.MirroredKeyProvider
 
getKeyData(String) - Static method in class com.atlassian.asap.core.keys.DataUriUtil
Extract the key data from the given data uri.
getKeyId() - Method in interface com.atlassian.asap.api.JwsHeader
 
getKeyId(String) - Static method in class com.atlassian.asap.core.keys.DataUriUtil
Extract the key identifier from the given data uri.
getKeyId() - Method in class com.atlassian.asap.core.validator.ValidatedKeyId
 
getKeyProviderChain() - Method in class com.atlassian.asap.core.keys.publickey.ChainedKeyProvider
 
getMirrors() - Method in class com.atlassian.asap.core.keys.publickey.MirroredKeyProvider
 
getNotBefore() - Method in interface com.atlassian.asap.api.JwtClaims
 
getSubject() - Method in interface com.atlassian.asap.api.JwtClaims
 

H

hashCode() - Method in class com.atlassian.asap.core.validator.ValidatedKeyId
 
hashSize() - Method in enum com.atlassian.asap.api.SigningAlgorithm
 
HTTP_AUTHORIZATION_HEADER_VALUE_PREFIX - Static variable in class com.atlassian.asap.core.JwtConstants
The Authorization HTTP header value prefix for the bearer authentication scheme.
HttpPublicKeyProvider - Class in com.atlassian.asap.core.keys.publickey
Reads public keys from web servers using the HTTPS protocol.
HttpPublicKeyProvider(URI, HttpClient, PemReader) - Constructor for class com.atlassian.asap.core.keys.publickey.HttpPublicKeyProvider
Create a new HttpPublicKeyProvider instance.

I

InvalidClaimException - Exception in com.atlassian.asap.core.exception
Thrown if a JWT claim does not match its expected format.
InvalidClaimException(String) - Constructor for exception com.atlassian.asap.core.exception.InvalidClaimException
 
InvalidClaimException(String, Throwable) - Constructor for exception com.atlassian.asap.core.exception.InvalidClaimException
 
InvalidHeaderException - Exception in com.atlassian.asap.core.exception
Thrown if a JWT header does not match its expected format.
InvalidHeaderException(String) - Constructor for exception com.atlassian.asap.core.exception.InvalidHeaderException
 
InvalidHeaderException(String, Throwable) - Constructor for exception com.atlassian.asap.core.exception.InvalidHeaderException
 
InvalidTokenException - Exception in com.atlassian.asap.api.exception
Indicates a JWT was syntactically well formed (parses successfully), but failed to validate.
InvalidTokenException(String) - Constructor for exception com.atlassian.asap.api.exception.InvalidTokenException
 
InvalidTokenException(String, Throwable) - Constructor for exception com.atlassian.asap.api.exception.InvalidTokenException
 
InvalidTokenException(Throwable) - Constructor for exception com.atlassian.asap.api.exception.InvalidTokenException
 
issuedAt(Instant) - Method in class com.atlassian.asap.api.JwtBuilder
Set the issued at (iat) claim.
issuer(String) - Method in class com.atlassian.asap.api.JwtBuilder
Set the issuer (iss) claim.

J

JwsHeader - Interface in com.atlassian.asap.api
The header of an ASAP JSON Web Token.
JwsHeader.Header - Enum in com.atlassian.asap.api
The headers of a JWT message.
Jwt - Interface in com.atlassian.asap.api
An ASAP JSON Web Token.
JwtBuilder - Class in com.atlassian.asap.api
A fluent builder for constructing a Jwt object.
JwtClaims - Interface in com.atlassian.asap.api
Represents the claims of an ASAP JWT payload.
JwtClaims.Claim - Enum in com.atlassian.asap.api
The claims of a JWT claims payload as per JWT spec.
JwtClaimsValidator - Class in com.atlassian.asap.core.validator
Validates the claims contained in a JWT.
JwtClaimsValidator(Clock) - Constructor for class com.atlassian.asap.core.validator.JwtClaimsValidator
 
JwtConstants - Class in com.atlassian.asap.core
Constants defined by the ASAP protocol.
jwtId(String) - Method in class com.atlassian.asap.api.JwtBuilder
Set the jwt id (jti) claim.
JwtParseException - Exception in com.atlassian.asap.core.exception
Indicates that the JWT was not well-formed.
JwtParseException(String, Throwable) - Constructor for exception com.atlassian.asap.core.exception.JwtParseException
 
JwtParseException(Throwable) - Constructor for exception com.atlassian.asap.core.exception.JwtParseException
 
JwtParseException(String) - Constructor for exception com.atlassian.asap.core.exception.JwtParseException
 
JwtParser - Interface in com.atlassian.asap.core.parser
Parses a JWT token without verifying its signature or checking the validity of its claims.
JwtSerializer - Interface in com.atlassian.asap.core.serializer
Signs and serialises JWT tokens.

K

key() - Method in enum com.atlassian.asap.api.JwsHeader.Header
 
key() - Method in enum com.atlassian.asap.api.JwtClaims.Claim
 
keyId(String) - Method in class com.atlassian.asap.api.JwtBuilder
Sets the key id jws header.
KeyProvider<K extends Key> - Interface in com.atlassian.asap.core.keys
 
KeyReader - Interface in com.atlassian.asap.core.keys
Reads cryptographic keys from encoded key data.

M

MAX_LIFETIME - Static variable in class com.atlassian.asap.core.validator.JwtClaimsValidator
No matter what the claims say, the server should reject tokens that are too long-lived.
MirroredKeyProvider - Class in com.atlassian.asap.core.keys.publickey
Represents a set of repositories that host identical set of keys - i.e.
MissingRequiredClaimException - Exception in com.atlassian.asap.core.exception
Thrown when a required claim is missing in the JWT claims payload.
MissingRequiredClaimException(JwtClaims.Claim) - Constructor for exception com.atlassian.asap.core.exception.MissingRequiredClaimException
 
MissingRequiredHeaderException - Exception in com.atlassian.asap.core.exception
Thrown when a required header is missing in the JWT header.
MissingRequiredHeaderException(JwsHeader.Header) - Constructor for exception com.atlassian.asap.core.exception.MissingRequiredHeaderException
 

N

newJwt() - Static method in class com.atlassian.asap.api.JwtBuilder
Construct a simple jwt builder initialised with default claim values as follows: nbf, iat claim set to current system time exp claim set current time plus default expiry as defined in JwtBuilder.DEFAULT_LIFETIME jti claim set to a random UUID.
NimbusJwtParser - Class in com.atlassian.asap.nimbus.parser
A parser of JWT implemented using the Nimbus library.
NimbusJwtParser() - Constructor for class com.atlassian.asap.nimbus.parser.NimbusJwtParser
 
NimbusJwtSerializer - Class in com.atlassian.asap.nimbus.serializer
A serializer of JWT implemented using the Nimbus library.
NimbusJwtSerializer() - Constructor for class com.atlassian.asap.nimbus.serializer.NimbusJwtSerializer
 
NimbusVerifiableJwt - Class in com.atlassian.asap.nimbus.parser
 
NimbusVerifiableJwt(Jwt, JWSObject) - Constructor for class com.atlassian.asap.nimbus.parser.NimbusVerifiableJwt
 
notBefore(Optional<Instant>) - Method in class com.atlassian.asap.api.JwtBuilder
Set the not before (nbf) claim.
NullKeyProvider - Class in com.atlassian.asap.core.keys.privatekey
A provider that provides no keys.
NullKeyProvider() - Constructor for class com.atlassian.asap.core.keys.privatekey.NullKeyProvider
 

P

parse(String) - Method in interface com.atlassian.asap.core.parser.JwtParser
Parses the encoded JWT message from String, and returns a verifiable JWT object without verifying its signature or validating its claims.
parse(String) - Method in class com.atlassian.asap.nimbus.parser.NimbusJwtParser
 
PATH_PATTERN - Static variable in class com.atlassian.asap.core.validator.ValidatedKeyId
Subset of the valid characters for URI Paths derived from RFC3986.
PemReader - Class in com.atlassian.asap.core.keys
Functions for reading PEM keys.
PemReader() - Constructor for class com.atlassian.asap.core.keys.PemReader
 
PrivateKeyProviderFactory - Class in com.atlassian.asap.core.keys.privatekey
 
PrivateKeyProviderFactory() - Constructor for class com.atlassian.asap.core.keys.privatekey.PrivateKeyProviderFactory
 
PublicKeyNotFoundException - Exception in com.atlassian.asap.core.exception
Thrown when the public key is reported as absent from the key repository.
PublicKeyNotFoundException(String) - Constructor for exception com.atlassian.asap.core.exception.PublicKeyNotFoundException
 
PublicKeyNotFoundException(String, Throwable) - Constructor for exception com.atlassian.asap.core.exception.PublicKeyNotFoundException
 
PublicKeyProviderFactory - Class in com.atlassian.asap.core.keys.publickey
Factory for creating KeyProvider<PublicKey> instances.
PublicKeyProviderFactory(HttpClient, PemReader) - Constructor for class com.atlassian.asap.core.keys.publickey.PublicKeyProviderFactory
 
PublicKeyRetrievalException - Exception in com.atlassian.asap.core.exception
Thrown when there was an error communicating with a public key repository.
PublicKeyRetrievalException(String) - Constructor for exception com.atlassian.asap.core.exception.PublicKeyRetrievalException
 
PublicKeyRetrievalException(String, Throwable) - Constructor for exception com.atlassian.asap.core.exception.PublicKeyRetrievalException
 

R

readPrivateKey(Reader) - Method in class com.atlassian.asap.core.keys.DataUriKeyReader
 
readPrivateKey(Reader) - Method in interface com.atlassian.asap.core.keys.KeyReader
 
readPrivateKey(Reader) - Method in class com.atlassian.asap.core.keys.PemReader
Reads a private key from a PEM file.
readPublicKey(Reader) - Method in class com.atlassian.asap.core.keys.DataUriKeyReader
 
readPublicKey(Reader) - Method in interface com.atlassian.asap.core.keys.KeyReader
 
readPublicKey(Reader) - Method in class com.atlassian.asap.core.keys.PemReader
Reads a public key from a PEM file.
RequestAuthenticator - Interface in com.atlassian.asap.api.server.http
HTTP servers can use this service to authenticate incoming HTTP requests that include a JWT bearer token in the Authorization header, conforming to the specification of ASAP protocol.
ReturnTypesAreNonNullByDefault - Annotation Type in com.atlassian.asap.annotation
 

S

serialize(Jwt, PrivateKey) - Method in interface com.atlassian.asap.core.serializer.JwtSerializer
Write the JWT with an appropriate signature.
serialize(Jwt, PrivateKey) - Method in class com.atlassian.asap.nimbus.serializer.NimbusJwtSerializer
 
SignatureMismatchException - Exception in com.atlassian.asap.core.exception
Indicates that the token signature does not match its contents.
SignatureMismatchException(Throwable) - Constructor for exception com.atlassian.asap.core.exception.SignatureMismatchException
 
SignatureMismatchException(String) - Constructor for exception com.atlassian.asap.core.exception.SignatureMismatchException
 
SigningAlgorithm - Enum in com.atlassian.asap.api
An enumeration of asymmetric JWS algorithms.
SigningException - Exception in com.atlassian.asap.core.exception
Thrown if a problem was encountered while signing a token.
SigningException() - Constructor for exception com.atlassian.asap.core.exception.SigningException
 
subject(Optional<String>) - Method in class com.atlassian.asap.api.JwtBuilder
Sets the subject (sub) claim for this jwt.
SystemPropertyKeyProvider - Class in com.atlassian.asap.core.keys.privatekey
Reads private keys specified as data uri from system properties.

T

TIME_CLAIM_LEEWAY - Static variable in class com.atlassian.asap.core.validator.JwtClaimsValidator
The JWT spec says that implementers "MAY provide for some small leeway, usually no more than a few minutes, to account for clock skew".
TokenExpiredException - Exception in com.atlassian.asap.core.exception
Thrown if the token timestamps show that it has expired.
TokenExpiredException(Instant, Instant) - Constructor for exception com.atlassian.asap.core.exception.TokenExpiredException
 
TokenTooEarlyException - Exception in com.atlassian.asap.core.exception
Thrown when a token was received before the not-before date/time listed in the nbf claim.
TokenTooEarlyException(Instant, Instant) - Constructor for exception com.atlassian.asap.core.exception.TokenTooEarlyException
 
toString() - Method in class com.atlassian.asap.core.validator.ValidatedKeyId
 
type() - Method in enum com.atlassian.asap.api.SigningAlgorithm
 

U

UnsupportedAlgorithmException - Exception in com.atlassian.asap.core.exception
Thrown if an incoming token is signed using an unsupported algorithm.
UnsupportedAlgorithmException(String) - Constructor for exception com.atlassian.asap.core.exception.UnsupportedAlgorithmException
 
UnsupportedAlgorithmException(String, Throwable) - Constructor for exception com.atlassian.asap.core.exception.UnsupportedAlgorithmException
 
UnsupportedAlgorithmException(Throwable) - Constructor for exception com.atlassian.asap.core.exception.UnsupportedAlgorithmException
 
URL_SCHEME - Static variable in class com.atlassian.asap.core.keys.privatekey.NullKeyProvider
 

V

validate(Jwt, String) - Method in class com.atlassian.asap.core.validator.JwtClaimsValidator
Checks the validity of the claims contained in a JWT in a given authentication context.
validate(String) - Static method in class com.atlassian.asap.core.validator.ValidatedKeyId
Validates the given key id and upon successful validation returns a ValidatedKeyId instance.
ValidatedKeyId - Class in com.atlassian.asap.core.validator
Represents a validated key id of the JWT Header.
valueOf(String) - Static method in enum com.atlassian.asap.api.AlgorithmType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.atlassian.asap.api.JwsHeader.Header
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.atlassian.asap.api.JwtClaims.Claim
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.atlassian.asap.api.SigningAlgorithm
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.atlassian.asap.api.AlgorithmType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.atlassian.asap.api.JwsHeader.Header
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.atlassian.asap.api.JwtClaims.Claim
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.atlassian.asap.api.SigningAlgorithm
Returns an array containing the constants of this enum type, in the order they are declared.
VerifiableJwt - Interface in com.atlassian.asap.core.parser
A signed JWT that can be verified using its signature and a public key.
verifySignature(PublicKey) - Method in interface com.atlassian.asap.core.parser.VerifiableJwt
Verify the signature of the given Signed Jwt.
verifySignature(PublicKey) - Method in class com.atlassian.asap.nimbus.parser.NimbusVerifiableJwt
 
A B C D E F G H I J K M N P R S T U V 
Skip navigation links

Copyright © 2016 Atlassian. All rights reserved.