| Interface | Description |
|---|---|
| Claims |
A JWT Claims set.
|
| ClaimsMutator<T extends ClaimsMutator> |
Mutation (modifications) to a
Claims instance. |
| Header<T extends Header<T>> |
A JWT JOSE header.
|
| Jws<B> |
An expanded (not compact/serialized) Signed JSON Web Token.
|
| JwsHeader<T extends JwsHeader<T>> |
A JWS header.
|
| Jwt<H extends Header,B> |
An expanded (not compact/serialized) JSON Web Token.
|
| JwtBuilder |
A builder for constructing JWTs.
|
| JwtHandler<T> |
A JwtHandler is invoked by a
JwtParser after parsing a JWT to indicate the exact
type of JWT or JWS parsed. |
| JwtParser |
A parser for reading JWT strings, used to convert them into a
Jwt object representing the expanded JWT. |
| Class | Description |
|---|---|
| JwtHandlerAdapter<T> |
An Adapter implementation of the
JwtHandler interface that allows for anonymous subclasses to process only the JWT results that are
known/expected for a particular use case. |
| Jwts |
Factory class useful for creating instances of JWT interfaces.
|
| Enum | Description |
|---|---|
| SignatureAlgorithm |
Type-safe representation of standard JWT signature algorithm names as defined in the
JSON Web Algorithms specification.
|
| Exception | Description |
|---|---|
| JwtException |
Base class for JWT-related runtime exceptions.
|
| MalformedJwtException |
Exception indicating that a JWT was not correctly constructed and should be rejected.
|
| SignatureException |
Exception indicating that either calculating a signature or verifying an existing signature of a JWT failed.
|
| UnsupportedJwtException |
Exception thrown when receiving a JWT in a particular format/configuration that does not match the format expected
by the application.
|
Copyright © 2014. All rights reserved.