Interface IdTokenClaimNames
-
public interface IdTokenClaimNamesThe names of the "claims" defined by the OpenID Connect Core 1.0 specification that can be returned in the ID Token.- Since:
- 5.0
- See Also:
OidcIdToken, ID Token
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACRacr- the Authentication Context Class Referencestatic java.lang.StringAMRamr- the Authentication Methods Referencesstatic java.lang.StringAT_HASHat_hash- the Access Token hash valuestatic java.lang.StringAUDaud- the Audience(s) that the ID Token is intended forstatic java.lang.StringAUTH_TIMEauth_time- the time when the End-User authentication occurredstatic java.lang.StringAZPazp- the Authorized party to which the ID Token was issuedstatic java.lang.StringC_HASHc_hash- the Authorization Code hash valuestatic java.lang.StringEXPexp- the Expiration time on or after which the ID Token MUST NOT be acceptedstatic java.lang.StringIATiat- the time at which the ID Token was issuedstatic java.lang.StringISSiss- the Issuer identifierstatic java.lang.StringNONCEnonce- aStringvalue used to associate a Client session with an ID Token, and to mitigate replay attacks.static java.lang.StringSUBsub- the Subject identifier
-
-
-
Field Detail
-
ISS
static final java.lang.String ISS
iss- the Issuer identifier- See Also:
- Constant Field Values
-
SUB
static final java.lang.String SUB
sub- the Subject identifier- See Also:
- Constant Field Values
-
AUD
static final java.lang.String AUD
aud- the Audience(s) that the ID Token is intended for- See Also:
- Constant Field Values
-
EXP
static final java.lang.String EXP
exp- the Expiration time on or after which the ID Token MUST NOT be accepted- See Also:
- Constant Field Values
-
IAT
static final java.lang.String IAT
iat- the time at which the ID Token was issued- See Also:
- Constant Field Values
-
AUTH_TIME
static final java.lang.String AUTH_TIME
auth_time- the time when the End-User authentication occurred- See Also:
- Constant Field Values
-
NONCE
static final java.lang.String NONCE
nonce- aStringvalue used to associate a Client session with an ID Token, and to mitigate replay attacks.- See Also:
- Constant Field Values
-
ACR
static final java.lang.String ACR
acr- the Authentication Context Class Reference- See Also:
- Constant Field Values
-
AMR
static final java.lang.String AMR
amr- the Authentication Methods References- See Also:
- Constant Field Values
-
AZP
static final java.lang.String AZP
azp- the Authorized party to which the ID Token was issued- See Also:
- Constant Field Values
-
AT_HASH
static final java.lang.String AT_HASH
at_hash- the Access Token hash value- See Also:
- Constant Field Values
-
C_HASH
static final java.lang.String C_HASH
c_hash- the Authorization Code hash value- See Also:
- Constant Field Values
-
-