org.logdoc.fairhttp.structs.traits.Headers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fair-http-client Show documentation
Show all versions of fair-http-client Show documentation
LogDoc.org project http client
package org.logdoc.fairhttp.structs.traits;
/**
* @author Denis Danilin | [email protected]
* 05.12.2022 16:22
* fairhttp ☭ sweat and blood
*/
public interface Headers {
String SendCookies = "Cookie",
GetCookies = "Set-Cookie",
ContentType = "Content-Type",
ContentLength = "Content-Length",
TransferEncoding = "Transfer-Encoding",
ContentDisposition = "Content-disposition",
Auth = "Authorization",
Encoding = "Content-Encoding",
Upgrade = "Upgrade",
Connection = "Connection",
Host = "Host",
SecWebsocketKey = "Sec-WebSocket-Key",
SecWebsocketVersion = "Sec-WebSocket-Version",
SecWebsocketExtensions = "Sec-WebSocket-Extensions",
SecWebsocketProtocols = "Sec-WebSocket-Protocol",
SecWebsocketAccept = "Sec-WebSocket-Accept";
}