Interface HttpTokens


public interface HttpTokens
Set of tokens built-in to HttpService that will be resolved for HttpRequests that have token resolution enabled.

These tokens are resolved specifically for HttpRequests, in addition to custom tokens provided through HttpRequest.setTokenRequest(TokenRequest), and the tokens defined in the Vaulttoken component.

These tokens can be resolved only in the request's headers, body parameters, and body. Tokens used in query string parameters are not resolved.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Resolves the "Authorization" value generated for the Authorization type associated to a connection.
    static final String
    Resolves the connection Authorization's client ID or login name.
    static final String
    Resolves the connection Authorization's client secret for the login user.
    static final String
    Resolves the connection Authorization's user or login name.
    static final String
    Resolves the connection Authorization's password for the login user.
    static final String
    Resolves a valid Vault session token for the Authorized Connection User on the Connection record.
    static final String
    Resolves a valid Vault session token for the currently authenticated user.
  • Field Details

    • AUTH_USER_NAME

      static final String AUTH_USER_NAME
      Resolves the connection Authorization's user or login name.
      See Also:
    • AUTH_USER_PASSWORD

      static final String AUTH_USER_PASSWORD
      Resolves the connection Authorization's password for the login user.
      See Also:
    • AUTH_CLIENT_ID

      static final String AUTH_CLIENT_ID
      Resolves the connection Authorization's client ID or login name.
      See Also:
    • AUTH_CLIENT_SECRET

      static final String AUTH_CLIENT_SECRET
      Resolves the connection Authorization's client secret for the login user.
      See Also:
    • AUTH_AUTHORIZATION_VALUE

      static final String AUTH_AUTHORIZATION_VALUE
      Resolves the "Authorization" value generated for the Authorization type associated to a connection.
      See Also:
    • SESSION_ID

      static final String SESSION_ID
      Resolves a valid Vault session token for the currently authenticated user.
      See Also:
    • CONNECTION_USER_SESSION_ID

      static final String CONNECTION_USER_SESSION_ID
      Resolves a valid Vault session token for the Authorized Connection User on the Connection record.
      See Also: