Interface JwtClaimNames


  • public interface JwtClaimNames
    The Registered Claim Names defined by the JSON Web Token (JWT) specification that may be contained in the JSON object JWT Claims Set.
    Since:
    5.0
    See Also:
    JwtClaimAccessor, JWT Claims
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String AUD
      aud - the Audience claim identifies the recipient(s) that the JWT is intended for
      static java.lang.String EXP
      exp - the Expiration time claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processing
      static java.lang.String IAT
      iat - The Issued at claim identifies the time at which the JWT was issued
      static java.lang.String ISS
      iss - the Issuer claim identifies the principal that issued the JWT
      static java.lang.String JTI
      jti - The JWT ID claim provides a unique identifier for the JWT
      static java.lang.String NBF
      nbf - the Not Before claim identifies the time before which the JWT MUST NOT be accepted for processing
      static java.lang.String SUB
      sub - the Subject claim identifies the principal that is the subject of the JWT
    • Field Detail

      • ISS

        static final java.lang.String ISS
        iss - the Issuer claim identifies the principal that issued the JWT
        See Also:
        Constant Field Values
      • SUB

        static final java.lang.String SUB
        sub - the Subject claim identifies the principal that is the subject of the JWT
        See Also:
        Constant Field Values
      • AUD

        static final java.lang.String AUD
        aud - the Audience claim identifies the recipient(s) that the JWT is intended for
        See Also:
        Constant Field Values
      • EXP

        static final java.lang.String EXP
        exp - the Expiration time claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processing
        See Also:
        Constant Field Values
      • NBF

        static final java.lang.String NBF
        nbf - the Not Before claim identifies the time before which the JWT MUST NOT be accepted for processing
        See Also:
        Constant Field Values
      • IAT

        static final java.lang.String IAT
        iat - The Issued at claim identifies the time at which the JWT was issued
        See Also:
        Constant Field Values
      • JTI

        static final java.lang.String JTI
        jti - The JWT ID claim provides a unique identifier for the JWT
        See Also:
        Constant Field Values