@@ -22,167 +22,167 @@ public interface HttpHeaders {
2222 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">HTTP/1.1
2323 * documentation</a>.
2424 */
25- public static final String ACCEPT = "Accept" ;
25+ String ACCEPT = "Accept" ;
2626
2727 /**
2828 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.2">HTTP/1.1
2929 * documentation</a>.
3030 */
31- public static final String ACCEPT_CHARSET = "Accept-Charset" ;
31+ String ACCEPT_CHARSET = "Accept-Charset" ;
3232
3333 /**
3434 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3">HTTP/1.1
3535 * documentation</a>.
3636 */
37- public static final String ACCEPT_ENCODING = "Accept-Encoding" ;
37+ String ACCEPT_ENCODING = "Accept-Encoding" ;
3838
3939 /**
4040 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4">HTTP/1.1
4141 * documentation</a>.
4242 */
43- public static final String ACCEPT_LANGUAGE = "Accept-Language" ;
43+ String ACCEPT_LANGUAGE = "Accept-Language" ;
4444
4545 /**
4646 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.8">HTTP/1.1
4747 * documentation</a>.
4848 */
49- public static final String AUTHORIZATION = "Authorization" ;
49+ String AUTHORIZATION = "Authorization" ;
5050
5151 /**
5252 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9">HTTP/1.1
5353 * documentation</a>.
5454 */
55- public static final String CACHE_CONTROL = "Cache-Control" ;
55+ String CACHE_CONTROL = "Cache-Control" ;
5656
5757 /**
5858 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11">HTTP/1.1
5959 * documentation</a>.
6060 */
61- public static final String CONTENT_ENCODING = "Content-Encoding" ;
61+ String CONTENT_ENCODING = "Content-Encoding" ;
6262
6363 /**
6464 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.12">HTTP/1.1
6565 * documentation</a>.
6666 */
67- public static final String CONTENT_LANGUAGE = "Content-Language" ;
67+ String CONTENT_LANGUAGE = "Content-Language" ;
6868
6969 /**
7070 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.12">HTTP/1.1
7171 * documentation</a>.
7272 */
73- public static final String CONTENT_DISPOSITION = "Content-Disposition" ;
73+ String CONTENT_DISPOSITION = "Content-Disposition" ;
7474
7575
7676 /**
7777 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13">HTTP/1.1
7878 * documentation</a>.
7979 */
80- public static final String CONTENT_LENGTH = "Content-Length" ;
80+ String CONTENT_LENGTH = "Content-Length" ;
8181
8282 /**
8383 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.14">HTTP/1.1
8484 * documentation</a>.
8585 */
86- public static final String CONTENT_LOCATION = "Content-Location" ;
86+ String CONTENT_LOCATION = "Content-Location" ;
8787
8888 /**
8989 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17">HTTP/1.1
9090 * documentation</a>.
9191 */
92- public static final String CONTENT_TYPE = "Content-Type" ;
92+ String CONTENT_TYPE = "Content-Type" ;
9393
9494 /**
9595 * See <a href="http://www.ietf.org/rfc/rfc2109.txt">IETF RFC 2109</a>.
9696 */
97- public static final String COOKIE = "Cookie" ;
97+ String COOKIE = "Cookie" ;
9898
9999 /**
100100 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.18">HTTP/1.1
101101 * documentation</a>.
102102 */
103- public static final String DATE = "Date" ;
103+ String DATE = "Date" ;
104104
105105 /**
106106 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.19">HTTP/1.1
107107 * documentation</a>.
108108 */
109- public static final String ETAG = "ETag" ;
109+ String ETAG = "ETag" ;
110110
111111 /**
112112 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21">HTTP/1.1
113113 * documentation</a>.
114114 */
115- public static final String EXPIRES = "Expires" ;
115+ String EXPIRES = "Expires" ;
116116
117117 /**
118118 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.23">HTTP/1.1
119119 * documentation</a>.
120120 */
121- public static final String HOST = "Host" ;
121+ String HOST = "Host" ;
122122
123123 /**
124124 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.24">HTTP/1.1
125125 * documentation</a>.
126126 */
127- public static final String IF_MATCH = "If-Match" ;
127+ String IF_MATCH = "If-Match" ;
128128
129129 /**
130130 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.25">HTTP/1.1
131131 * documentation</a>.
132132 */
133- public static final String IF_MODIFIED_SINCE = "If-Modified-Since" ;
133+ String IF_MODIFIED_SINCE = "If-Modified-Since" ;
134134
135135 /**
136136 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.26">HTTP/1.1
137137 * documentation</a>.
138138 */
139- public static final String IF_NONE_MATCH = "If-None-Match" ;
139+ String IF_NONE_MATCH = "If-None-Match" ;
140140
141141 /**
142142 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.28">HTTP/1.1
143143 * documentation</a>.
144144 */
145- public static final String IF_UNMODIFIED_SINCE = "If-Unmodified-Since" ;
145+ String IF_UNMODIFIED_SINCE = "If-Unmodified-Since" ;
146146
147147 /**
148148 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.29">HTTP/1.1
149149 * documentation</a>.
150150 */
151- public static final String LAST_MODIFIED = "Last-Modified" ;
151+ String LAST_MODIFIED = "Last-Modified" ;
152152
153153 /**
154154 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.30">HTTP/1.1
155155 * documentation</a>.
156156 */
157- public static final String LOCATION = "Location" ;
157+ String LOCATION = "Location" ;
158158
159159 /**
160160 * See <a href="http://www.ietf.org/rfc/rfc2109.txt">IETF RFC 2109</a>.
161161 */
162- public static final String SET_COOKIE = "Set-Cookie" ;
162+ String SET_COOKIE = "Set-Cookie" ;
163163
164164 /**
165165 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.43">HTTP/1.1
166166 * documentation</a>.
167167 */
168- public static final String USER_AGENT = "User-Agent" ;
168+ String USER_AGENT = "User-Agent" ;
169169
170170 /**
171171 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.44">HTTP/1.1
172172 * documentation</a>.
173173 */
174- public static final String VARY = "Vary" ;
174+ String VARY = "Vary" ;
175175
176176 /**
177177 * See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.47">HTTP/1.1
178178 * documentation</a>.
179179 */
180- public static final String WWW_AUTHENTICATE = "WWW-Authenticate" ;
180+ String WWW_AUTHENTICATE = "WWW-Authenticate" ;
181181
182182 /** The Authorization token header. */
183- public static final String X_WATSON_AUTHORIZATION_TOKEN = "X-Watson-Authorization-Token" ;
183+ String X_WATSON_AUTHORIZATION_TOKEN = "X-Watson-Authorization-Token" ;
184184
185185 /** Allow Watson to collect the payload. */
186- public static final String X_WATSON_LEARNING_OPT_OUT = "X-Watson-Learning-Opt-Out" ;
186+ String X_WATSON_LEARNING_OPT_OUT = "X-Watson-Learning-Opt-Out" ;
187187
188188}
0 commit comments