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 X-Original-Content-Length. 015 */ 016 public static final String X_ORIGINAL_CONTENT_LENGTH = "X-Original-Content-Length"; 017 018 /** 019 * HTTP header key Content-Type. 020 */ 021 public static final String CONTENT_TYPE = "Content-Type"; 022 023 /** 024 * HTTP header key Content-Range. 025 */ 026 public static final String CONTENT_RANGE = "Content-Range"; 027 028 /** 029 * HTTP header key DIgest. 030 */ 031 public static final String DIGEST = "Digest"; 032 033 /** 034 * HTTP header key If-Match. 035 */ 036 public static final String IF_MATCH = "If-Match"; 037 038 /** 039 * HTTP header key If-None-Match. 040 */ 041 public static final String IF_NONE_MATCH = "If-None-Match"; 042 043 /** 044 * HTTP header key X-Box-Part-Id. 045 */ 046 public static final String X_BOX_PART_ID = "X-Box-Part-Id"; 047 048 /** 049 * HTTP header key Authorization. 050 */ 051 public static final String AUTHORIZATION = "Authorization"; 052 053 //Prevents instantiation 054 private HttpHeaders() { 055 } 056}