java.lang.Object
org.springframework.security.oauth2.server.authorization.token.OAuth2TokenClaimNames

public final class OAuth2TokenClaimNames extends Object
The names of the "claims" that may be contained in an OAuth2TokenClaimsSet and are associated to an OAuth2Token.
Since:
0.2.3
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    aud - the Audience claim identifies the recipient(s) that the OAuth 2.0 Token is intended for
    static final String
    exp - the Expiration time claim identifies the expiration time on or after which the OAuth 2.0 Token MUST NOT be accepted for processing
    static final String
    iat - The Issued at claim identifies the time at which the OAuth 2.0 Token was issued
    static final String
    iss - the Issuer claim identifies the principal that issued the OAuth 2.0 Token
    static final String
    jti - The ID claim provides a unique identifier for the OAuth 2.0 Token
    static final String
    nbf - the Not Before claim identifies the time before which the OAuth 2.0 Token MUST NOT be accepted for processing
    static final String
    sub - the Subject claim identifies the principal that is the subject of the OAuth 2.0 Token
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • ISS

      public static final String ISS
      iss - the Issuer claim identifies the principal that issued the OAuth 2.0 Token
      See Also:
    • SUB

      public static final String SUB
      sub - the Subject claim identifies the principal that is the subject of the OAuth 2.0 Token
      See Also:
    • AUD

      public static final String AUD
      aud - the Audience claim identifies the recipient(s) that the OAuth 2.0 Token is intended for
      See Also:
    • EXP

      public static final String EXP
      exp - the Expiration time claim identifies the expiration time on or after which the OAuth 2.0 Token MUST NOT be accepted for processing
      See Also:
    • NBF

      public static final String NBF
      nbf - the Not Before claim identifies the time before which the OAuth 2.0 Token MUST NOT be accepted for processing
      See Also:
    • IAT

      public static final String IAT
      iat - The Issued at claim identifies the time at which the OAuth 2.0 Token was issued
      See Also:
    • JTI

      public static final String JTI
      jti - The ID claim provides a unique identifier for the OAuth 2.0 Token
      See Also: