Interface Jwt
public interface Jwt
An object representing a JWT token as described in the
RFC 7519.
-
Method Summary
-
Method Details
-
create
Creates a JWT from the provide JWT representation.- Parameters:
jwtValue
- the JWTString
representation of the JWT (i.e. a concatenation of base 64 URL encodedString
s separated with period characters).- Returns:
- the object representing the JWT
- Throws:
IllegalArgumentException
- if the providedString
does not have a valid JWT syntax
-
toString
String toString()TheString
representation of this JWT (i.e. a concatenation of base 64 URL encodedString
s separated with period characters).
-