Interface OAuth2IntrospectionClaimNames

  • All Superinterfaces:
    org.springframework.security.oauth2.core.OAuth2TokenIntrospectionClaimNames

    @Deprecated
    public interface OAuth2IntrospectionClaimNames
    extends org.springframework.security.oauth2.core.OAuth2TokenIntrospectionClaimNames
    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 AUDIENCE
      Deprecated.
      use OAuth2TokenIntrospectionClaimNames.AUD instead
      static java.lang.String EXPIRES_AT
      Deprecated.
      use OAuth2TokenIntrospectionClaimNames.EXP instead
      static java.lang.String ISSUED_AT
      Deprecated.
      use OAuth2TokenIntrospectionClaimNames.IAT instead
      static java.lang.String ISSUER
      Deprecated.
      use OAuth2TokenIntrospectionClaimNames.ISS instead
      static java.lang.String NOT_BEFORE
      Deprecated.
      use OAuth2TokenIntrospectionClaimNames.NBF instead
      static java.lang.String SUBJECT
      Deprecated.
      use OAuth2TokenIntrospectionClaimNames.SUB instead
      • Fields inherited from interface org.springframework.security.oauth2.core.OAuth2TokenIntrospectionClaimNames

        ACTIVE, AUD, CLIENT_ID, EXP, IAT, ISS, JTI, NBF, SCOPE, SUB, TOKEN_TYPE, USERNAME
    • Field Detail

      • EXPIRES_AT

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

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

        static final java.lang.String NOT_BEFORE
        Deprecated.
        use OAuth2TokenIntrospectionClaimNames.NBF instead
        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.
        use OAuth2TokenIntrospectionClaimNames.SUB instead
        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.
        use OAuth2TokenIntrospectionClaimNames.AUD instead
        aud - The intended audience for the token
        See Also:
        Constant Field Values
      • ISSUER

        static final java.lang.String ISSUER
        Deprecated.
        use OAuth2TokenIntrospectionClaimNames.ISS instead
        iss - The issuer of the token
        See Also:
        Constant Field Values