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