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

com.sap.cloud.security.xsuaa.http.HttpHeaders Maven / Gradle / Ivy

There is a newer version: 3.5.6
Show newest version
/**
 * SPDX-FileCopyrightText: 2018-2023 SAP SE or an SAP affiliate company and Cloud Security Client Java contributors
 * 

* SPDX-License-Identifier: Apache-2.0 */ package com.sap.cloud.security.xsuaa.http; import java.util.*; import java.util.stream.Collectors; public class HttpHeaders { public static final String AUTHORIZATION = "Authorization"; public static final String ACCEPT = "Accept"; public static final String CONTENT_TYPE = "Content-Type"; /** * Used for Xsuaa Token flows only */ public static final String X_ZID = "X-zid"; /** * @deprecated use {@link #X_APP_TID} instead * * will be removed with next major release 4.0.0 */ @Deprecated(forRemoval = true) public static final String X_ZONE_UUID = "x-zone_uuid"; public static final String X_APP_TID = "x-app_tid"; public static final String X_CLIENT_ID = "x-client_id"; public static final String X_AZP = "x-azp"; public static final String X_CLIENT_CERT = "x-client_cert"; public static final String X_OSB_PLAN = "x-osb_plan"; private final Set headers; public HttpHeaders(HttpHeader... headers) { this(Arrays.asList(headers)); } public HttpHeaders(Collection headers) { this.headers = new HashSet<>(headers); } public Set getHeaders() { return headers; } public HttpHeaders withHeader(String headerName, String value) { this.headers.add(new HttpHeader(headerName, value)); return this; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; HttpHeaders that = (HttpHeaders) o; return Objects.equals(headers, that.headers); } @Override public int hashCode() { return Objects.hash(headers); } @Override public String toString() { return "HttpHeaders: [ " + headers.stream().map(HttpHeader::toString) .collect(Collectors.joining(", ")) + " ]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy