Package | Description |
---|---|
io.jsonwebtoken |
Modifier and Type | Interface | Description |
---|---|---|
interface |
Jws<B> |
An expanded (not compact/serialized) Signed JSON Web Token.
|
Modifier and Type | Method | Description |
---|---|---|
Jwt |
JwtParser.parse(String jwt) |
Parses the specified compact serialized JWT string based on the builder's current configuration state and
returns the resulting JWT or JWS instance.
|
Jwt<Header,Claims> |
JwtParser.parseClaimsJwt(String claimsJwt) |
Parses the specified compact serialized JWT string based on the builder's current configuration state and
returns
the resulting unsigned plaintext JWT instance.
|
Jwt<Header,String> |
JwtParser.parsePlaintextJwt(String plaintextJwt) |
Parses the specified compact serialized JWT string based on the builder's current configuration state and
returns
the resulting unsigned plaintext JWT instance.
|
Modifier and Type | Method | Description |
---|---|---|
T |
JwtHandler.onClaimsJwt(Jwt<Header,Claims> jwt) |
This method is invoked when a
JwtParser determines that the parsed JWT is
a Claims JWT. |
T |
JwtHandlerAdapter.onClaimsJwt(Jwt<Header,Claims> jwt) |
|
T |
JwtHandler.onPlaintextJwt(Jwt<Header,String> jwt) |
This method is invoked when a
JwtParser determines that the parsed JWT is
a plaintext JWT. |
T |
JwtHandlerAdapter.onPlaintextJwt(Jwt<Header,String> jwt) |
Copyright © 2019. All rights reserved.