Interface OAuth2IntrospectionClaimNames


  • public interface OAuth2IntrospectionClaimNames
    Deprecated.
    Use OAuth2TokenIntrospectionClaimNames instead
    The names of the "Introspection Claims" defined by an Introspection Response.
    Since:
    5.2
    • Field Summary

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

      • ACTIVE

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

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

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

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

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

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

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

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

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

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

        static final java.lang.String ISSUER
        Deprecated.
        iss - The issuer of the token
        See Also:
        Constant Field Values
      • JTI

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