Package com.ibm.websphere.security.jwt
Interface JwtToken
public interface JwtToken
The 
JwtToken represents JSON Web Token (JWT) and consists of a payload which is represented by Claims and
 header and signature. This interface has three methods to return these.- Since:
- 1.0
- 
Method Summary
- 
Method Details- 
getClaimsClaims getClaims()- Returns:
- The JwtTokenclaims or payload
 
- 
getHeader- Parameters:
- name- This is the header name
- Returns:
- The JwtTokenheader value corresponding to the given header name
 
- 
compactString compact()- Returns:
- The JwtTokenas a string consisting of base64 encoded header, payload, signature separated by period ('.') characters.
 
 
-