package de.thedevstack.conversationsplus.http; import java.net.HttpURLConnection; /** * */ public interface Http { // HTTP Response Codes int HTTP_NOT_FOUND = HttpURLConnection.HTTP_NOT_FOUND; // Header Field Names String MIME_REQUEST_PROPERTY_NAME = "Content-Type"; String HEADER_NAME_CONTENT_LENGTH = "Content-Length"; String HEADER_NAME_ACCEPT_ENCODING = "Accept-Encoding"; String USER_AGENT_REQUEST_PROPERTY_NAME = "User-Agent"; }