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 JWTStringrepresentation of the JWT (i.e. a concatenation of base 64 URL encodedStrings separated with period characters).- Returns:
- the object representing the JWT
- Throws:
IllegalArgumentException- if the providedStringdoes not have a valid JWT syntax
-
toString
TheStringrepresentation of this JWT (i.e. a concatenation of base 64 URL encodedStrings separated with period characters).
-