Interface OAuth2TokenIntrospectionClaimNames

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ACTIVE
      active - Indicator whether or not the token is currently active
      static java.lang.String AUD
      aud - The intended audience for the token
      static java.lang.String CLIENT_ID
      client_id - The Client identifier for the token
      static java.lang.String EXP
      exp - A timestamp indicating when the token expires
      static java.lang.String IAT
      iat - A timestamp indicating when the token was issued
      static java.lang.String ISS
      iss - The issuer of the token
      static java.lang.String JTI
      jti - The identifier for the token
      static java.lang.String NBF
      nbf - A timestamp indicating when the token is not to be used before
      static java.lang.String SCOPE
      scope - The scopes for the token
      static java.lang.String SUB
      sub - Usually a machine-readable identifier of the resource owner who authorized the token
      static java.lang.String TOKEN_TYPE
      token_type - The type of the token, for example bearer.
      static java.lang.String USERNAME
      username - A human-readable identifier for the resource owner that authorized the token
    • Field Detail

      • ACTIVE

        static final java.lang.String ACTIVE
        active - Indicator whether or not the token is currently active
        See Also:
        Constant Field Values
      • USERNAME

        static final java.lang.String USERNAME
        username - A human-readable identifier for the resource owner that authorized the token
        See Also:
        Constant Field Values
      • CLIENT_ID

        static final java.lang.String CLIENT_ID
        client_id - The Client identifier for the token
        See Also:
        Constant Field Values
      • SCOPE

        static final java.lang.String SCOPE
        scope - The scopes for the token
        See Also:
        Constant Field Values
      • TOKEN_TYPE

        static final java.lang.String TOKEN_TYPE
        token_type - The type of the token, for example bearer.
        See Also:
        Constant Field Values
      • EXP

        static final java.lang.String EXP
        exp - A timestamp indicating when the token expires
        See Also:
        Constant Field Values
      • IAT

        static final java.lang.String IAT
        iat - A timestamp indicating when the token was issued
        See Also:
        Constant Field Values
      • NBF

        static final java.lang.String NBF
        nbf - A timestamp indicating when the token is not to be used before
        See Also:
        Constant Field Values
      • SUB

        static final java.lang.String SUB
        sub - Usually a machine-readable identifier of the resource owner who authorized the token
        See Also:
        Constant Field Values
      • AUD

        static final java.lang.String AUD
        aud - The intended audience for the token
        See Also:
        Constant Field Values
      • JTI

        static final java.lang.String JTI
        jti - The identifier for the token
        See Also:
        Constant Field Values