com.imiconnect.connect.core.client.HttpHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
IMIConnect platform Java SDK client library.
The newest version!
package com.imiconnect.connect.core.client;
/** Collection of headers used to communicate with the Connect api. */
interface HttpHeaders {
/** The response header name that defines the request ID. */
String REQUEST_ID = "Request-Id";
/**
* The request header name that is used to send the idempotency key to ensure a request is only
* processed once.
*/
String IDEMPOTENCY_KEY = "Idempotency-Key";
/** Authentication header prefix for supporting bearer tokens. */
String BEARER_PREFIX = "Bearer ";
/** Standard authorization header name. */
String AUTHORIZATION = "Authorization";
}