Interface IdentityToken
public interface IdentityToken
An Identity token is a security token that is issued in an authentication flow
 process.
- Author:
 - jGauravGupta, Rudy De Busscher
 
- 
Method Summary
 
- 
Method Details
- 
getToken
String getToken()- Returns:
 - the identity token
 
 - 
getJwtClaims
JwtClaims getJwtClaims()Claims of this token- Returns:
 - claims of this token
 
 - 
isExpired
boolean isExpired()Checks if the Identity Token is expired.- Returns:
 true, if identity token is expired or it will be expired in the next X milliseconds configured by user.
 - 
getClaims
- Returns:
 - the identity token's claims that was received from the OpenId Connect provider
 
 
 -