001package com.box.sdk.http;
002
003/**
004 * HTTP header Key constants.
005 */
006public final class HttpHeaders {
007
008    /**
009     * HTTP header key Content-Length.
010     */
011    public static final String CONTENT_LENGTH = "Content-Length";
012
013    /**
014     * HTTP header key Content-Type.
015     */
016    public static final String CONTENT_TYPE = "Content-Type";
017
018    /**
019     * HTTP header key Content-Range.
020     */
021    public static final String CONTENT_RANGE = "Content-Range";
022
023    /**
024     * HTTP header key DIgest.
025     */
026    public static final String DIGEST = "Digest";
027
028    /**
029     * HTTP header key If-Match.
030     */
031    public static final String IF_MATCH = "If-Match";
032
033    /**
034     * HTTP header key If-None-Match.
035     */
036    public static final String IF_NONE_MATCH = "If-None-Match";
037
038    /**
039     * HTTP header key X-Box-Part-Id.
040     */
041    public static final String X_BOX_PART_ID = "X-Box-Part-Id";
042
043    /**
044     * HTTP header key Authorization.
045     */
046    public static final String AUTHORIZATION = "Authorization";
047
048    //Prevents instantiation
049    private HttpHeaders() {
050    }
051}