All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imiconnect.connect.core.client.HttpHeaders Maven / Gradle / Ivy

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";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy