Package | Description |
---|---|
io.jsonwebtoken |
Modifier and Type | Interface and Description |
---|---|
interface |
Jws<B>
An expanded (not compact/serialized) Signed JSON Web Token.
|
Modifier and Type | Method and 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 and 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 © 2014–2020 jsonwebtoken.io. All rights reserved.