Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/java/net/HttpURLConnection.java
41152 views
1
/*
2
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package java.net;
27
28
import java.io.InputStream;
29
import java.io.IOException;
30
import java.security.Permission;
31
import java.util.Date;
32
33
/**
34
* A URLConnection with support for HTTP-specific features. See
35
* <A HREF="http://www.w3.org/pub/WWW/Protocols/"> the spec </A> for
36
* details.
37
* <p>
38
*
39
* Each HttpURLConnection instance is used to make a single request
40
* but the underlying network connection to the HTTP server may be
41
* transparently shared by other instances. Calling the close() methods
42
* on the InputStream or OutputStream of an HttpURLConnection
43
* after a request may free network resources associated with this
44
* instance but has no effect on any shared persistent connection.
45
* Calling the disconnect() method may close the underlying socket
46
* if a persistent connection is otherwise idle at that time.
47
*
48
* <P>The HTTP protocol handler has a few settings that can be accessed through
49
* System Properties. This covers
50
* <a href="doc-files/net-properties.html#Proxies">Proxy settings</a> as well as
51
* <a href="doc-files/net-properties.html#MiscHTTP"> various other settings</a>.
52
* </P>
53
* <p>
54
* <b>Security permissions</b>
55
* <p>
56
* If a security manager is installed, and if a method is called which results in an
57
* attempt to open a connection, the caller must possess either:
58
* <ul><li>a "connect" {@link SocketPermission} to the host/port combination of the
59
* destination URL or</li>
60
* <li>a {@link URLPermission} that permits this request.</li>
61
* </ul><p>
62
* If automatic redirection is enabled, and this request is redirected to another
63
* destination, then the caller must also have permission to connect to the
64
* redirected host/URL.
65
*
66
* @see java.net.HttpURLConnection#disconnect()
67
* @since 1.1
68
*/
69
public abstract class HttpURLConnection extends URLConnection {
70
/* instance variables */
71
72
/**
73
* The HTTP method (GET,POST,PUT,etc.).
74
*/
75
protected String method = "GET";
76
77
/**
78
* The chunk-length when using chunked encoding streaming mode for output.
79
* A value of {@code -1} means chunked encoding is disabled for output.
80
* @since 1.5
81
*/
82
protected int chunkLength = -1;
83
84
/**
85
* The fixed content-length when using fixed-length streaming mode.
86
* A value of {@code -1} means fixed-length streaming mode is disabled
87
* for output.
88
*
89
* <P> <B>NOTE:</B> {@link #fixedContentLengthLong} is recommended instead
90
* of this field, as it allows larger content lengths to be set.
91
*
92
* @since 1.5
93
*/
94
protected int fixedContentLength = -1;
95
96
/**
97
* The fixed content-length when using fixed-length streaming mode.
98
* A value of {@code -1} means fixed-length streaming mode is disabled
99
* for output.
100
*
101
* @since 1.7
102
*/
103
protected long fixedContentLengthLong = -1;
104
105
/**
106
* Supplies an {@link java.net.Authenticator Authenticator} to be used
107
* when authentication is requested through the HTTP protocol for
108
* this {@code HttpURLConnection}.
109
* If no authenticator is supplied, the
110
* {@linkplain Authenticator#setDefault(java.net.Authenticator) default
111
* authenticator} will be used.
112
*
113
* @implSpec The default behavior of this method is to unconditionally
114
* throw {@link UnsupportedOperationException}. Concrete
115
* implementations of {@code HttpURLConnection}
116
* which support supplying an {@code Authenticator} for a
117
* specific {@code HttpURLConnection} instance should
118
* override this method to implement a different behavior.
119
*
120
* @implNote Depending on authentication schemes, an implementation
121
* may or may not need to use the provided authenticator
122
* to obtain a password. For instance, an implementation that
123
* relies on third-party security libraries may still invoke the
124
* default authenticator if these libraries are configured
125
* to do so.
126
* Likewise, an implementation that supports transparent
127
* NTLM authentication may let the system attempt
128
* to connect using the system user credentials first,
129
* before invoking the provided authenticator.
130
* <br>
131
* However, if an authenticator is specifically provided,
132
* then the underlying connection may only be reused for
133
* {@code HttpURLConnection} instances which share the same
134
* {@code Authenticator} instance, and authentication information,
135
* if cached, may only be reused for an {@code HttpURLConnection}
136
* sharing that same {@code Authenticator}.
137
*
138
* @param auth The {@code Authenticator} that should be used by this
139
* {@code HttpURLConnection}.
140
*
141
* @throws UnsupportedOperationException if setting an Authenticator is
142
* not supported by the underlying implementation.
143
* @throws IllegalStateException if URLConnection is already connected.
144
* @throws NullPointerException if the supplied {@code auth} is {@code null}.
145
* @since 9
146
*/
147
public void setAuthenticator(Authenticator auth) {
148
throw new UnsupportedOperationException("Supplying an authenticator"
149
+ " is not supported by " + this.getClass());
150
}
151
152
/**
153
* Returns the key for the {@code n}<sup>th</sup> header field.
154
* Some implementations may treat the {@code 0}<sup>th</sup>
155
* header field as special, i.e. as the status line returned by the HTTP
156
* server. In this case, {@link #getHeaderField(int) getHeaderField(0)} returns the status
157
* line, but {@code getHeaderFieldKey(0)} returns null.
158
*
159
* @param n an index, where {@code n >=0}.
160
* @return the key for the {@code n}<sup>th</sup> header field,
161
* or {@code null} if the key does not exist.
162
*/
163
public String getHeaderFieldKey (int n) {
164
return null;
165
}
166
167
/**
168
* This method is used to enable streaming of a HTTP request body
169
* without internal buffering, when the content length is known in
170
* advance.
171
* <p>
172
* An exception will be thrown if the application
173
* attempts to write more data than the indicated
174
* content-length, or if the application closes the OutputStream
175
* before writing the indicated amount.
176
* <p>
177
* When output streaming is enabled, authentication
178
* and redirection cannot be handled automatically.
179
* A HttpRetryException will be thrown when reading
180
* the response if authentication or redirection are required.
181
* This exception can be queried for the details of the error.
182
* <p>
183
* This method must be called before the URLConnection is connected.
184
* <p>
185
* <B>NOTE:</B> {@link #setFixedLengthStreamingMode(long)} is recommended
186
* instead of this method as it allows larger content lengths to be set.
187
*
188
* @param contentLength The number of bytes which will be written
189
* to the OutputStream.
190
*
191
* @throws IllegalStateException if URLConnection is already connected
192
* or if a different streaming mode is already enabled.
193
*
194
* @throws IllegalArgumentException if a content length less than
195
* zero is specified.
196
*
197
* @see #setChunkedStreamingMode(int)
198
* @since 1.5
199
*/
200
public void setFixedLengthStreamingMode (int contentLength) {
201
if (connected) {
202
throw new IllegalStateException ("Already connected");
203
}
204
if (chunkLength != -1) {
205
throw new IllegalStateException ("Chunked encoding streaming mode set");
206
}
207
if (contentLength < 0) {
208
throw new IllegalArgumentException ("invalid content length");
209
}
210
fixedContentLength = contentLength;
211
}
212
213
/**
214
* This method is used to enable streaming of a HTTP request body
215
* without internal buffering, when the content length is known in
216
* advance.
217
*
218
* <P> An exception will be thrown if the application attempts to write
219
* more data than the indicated content-length, or if the application
220
* closes the OutputStream before writing the indicated amount.
221
*
222
* <P> When output streaming is enabled, authentication and redirection
223
* cannot be handled automatically. A {@linkplain HttpRetryException} will
224
* be thrown when reading the response if authentication or redirection
225
* are required. This exception can be queried for the details of the
226
* error.
227
*
228
* <P> This method must be called before the URLConnection is connected.
229
*
230
* <P> The content length set by invoking this method takes precedence
231
* over any value set by {@link #setFixedLengthStreamingMode(int)}.
232
*
233
* @param contentLength
234
* The number of bytes which will be written to the OutputStream.
235
*
236
* @throws IllegalStateException
237
* if URLConnection is already connected or if a different
238
* streaming mode is already enabled.
239
*
240
* @throws IllegalArgumentException
241
* if a content length less than zero is specified.
242
*
243
* @since 1.7
244
*/
245
public void setFixedLengthStreamingMode(long contentLength) {
246
if (connected) {
247
throw new IllegalStateException("Already connected");
248
}
249
if (chunkLength != -1) {
250
throw new IllegalStateException(
251
"Chunked encoding streaming mode set");
252
}
253
if (contentLength < 0) {
254
throw new IllegalArgumentException("invalid content length");
255
}
256
fixedContentLengthLong = contentLength;
257
}
258
259
/* Default chunk size (including chunk header) if not specified;
260
* we want to keep this in sync with the one defined in
261
* sun.net.www.http.ChunkedOutputStream
262
*/
263
private static final int DEFAULT_CHUNK_SIZE = 4096;
264
265
/**
266
* This method is used to enable streaming of a HTTP request body
267
* without internal buffering, when the content length is <b>not</b>
268
* known in advance. In this mode, chunked transfer encoding
269
* is used to send the request body. Note, not all HTTP servers
270
* support this mode.
271
* <p>
272
* When output streaming is enabled, authentication
273
* and redirection cannot be handled automatically.
274
* A HttpRetryException will be thrown when reading
275
* the response if authentication or redirection are required.
276
* This exception can be queried for the details of the error.
277
* <p>
278
* This method must be called before the URLConnection is connected.
279
*
280
* @param chunklen The number of bytes to write in each chunk.
281
* If chunklen is less than or equal to zero, a default
282
* value will be used.
283
*
284
* @throws IllegalStateException if URLConnection is already connected
285
* or if a different streaming mode is already enabled.
286
*
287
* @see #setFixedLengthStreamingMode(int)
288
* @since 1.5
289
*/
290
public void setChunkedStreamingMode (int chunklen) {
291
if (connected) {
292
throw new IllegalStateException ("Can't set streaming mode: already connected");
293
}
294
if (fixedContentLength != -1 || fixedContentLengthLong != -1) {
295
throw new IllegalStateException ("Fixed length streaming mode set");
296
}
297
chunkLength = chunklen <=0? DEFAULT_CHUNK_SIZE : chunklen;
298
}
299
300
/**
301
* Returns the value for the {@code n}<sup>th</sup> header field.
302
* Some implementations may treat the {@code 0}<sup>th</sup>
303
* header field as special, i.e. as the status line returned by the HTTP
304
* server.
305
* <p>
306
* This method can be used in conjunction with the
307
* {@link #getHeaderFieldKey getHeaderFieldKey} method to iterate through all
308
* the headers in the message.
309
*
310
* @param n an index, where {@code n>=0}.
311
* @return the value of the {@code n}<sup>th</sup> header field,
312
* or {@code null} if the value does not exist.
313
* @see java.net.HttpURLConnection#getHeaderFieldKey(int)
314
*/
315
public String getHeaderField(int n) {
316
return null;
317
}
318
319
/**
320
* An {@code int} representing the three digit HTTP Status-Code.
321
* <ul>
322
* <li> 1xx: Informational
323
* <li> 2xx: Success
324
* <li> 3xx: Redirection
325
* <li> 4xx: Client Error
326
* <li> 5xx: Server Error
327
* </ul>
328
*/
329
protected int responseCode = -1;
330
331
/**
332
* The HTTP response message.
333
*/
334
protected String responseMessage = null;
335
336
/* static variables */
337
338
/* do we automatically follow redirects? The default is true. */
339
private static boolean followRedirects = true;
340
341
/**
342
* If {@code true}, the protocol will automatically follow redirects.
343
* If {@code false}, the protocol will not automatically follow
344
* redirects.
345
* <p>
346
* This field is set by the {@code setInstanceFollowRedirects}
347
* method. Its value is returned by the {@code getInstanceFollowRedirects}
348
* method.
349
* <p>
350
* Its default value is based on the value of the static followRedirects
351
* at HttpURLConnection construction time.
352
*
353
* @see java.net.HttpURLConnection#setInstanceFollowRedirects(boolean)
354
* @see java.net.HttpURLConnection#getInstanceFollowRedirects()
355
* @see java.net.HttpURLConnection#setFollowRedirects(boolean)
356
*/
357
protected boolean instanceFollowRedirects = followRedirects;
358
359
/* valid HTTP methods */
360
private static final String[] methods = {
361
"GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE"
362
};
363
364
/**
365
* Constructor for the HttpURLConnection.
366
* @param u the URL
367
*/
368
protected HttpURLConnection (URL u) {
369
super(u);
370
}
371
372
/**
373
* Sets whether HTTP redirects (requests with response code 3xx) should
374
* be automatically followed by this class. True by default. Applets
375
* cannot change this variable.
376
* <p>
377
* If there is a security manager, this method first calls
378
* the security manager's {@code checkSetFactory} method
379
* to ensure the operation is allowed.
380
* This could result in a SecurityException.
381
*
382
* @param set a {@code boolean} indicating whether or not
383
* to follow HTTP redirects.
384
* @throws SecurityException if a security manager exists and its
385
* {@code checkSetFactory} method doesn't
386
* allow the operation.
387
* @see SecurityManager#checkSetFactory
388
* @see #getFollowRedirects()
389
*/
390
public static void setFollowRedirects(boolean set) {
391
@SuppressWarnings("removal")
392
SecurityManager sec = System.getSecurityManager();
393
if (sec != null) {
394
// seems to be the best check here...
395
sec.checkSetFactory();
396
}
397
followRedirects = set;
398
}
399
400
/**
401
* Returns a {@code boolean} indicating
402
* whether or not HTTP redirects (3xx) should
403
* be automatically followed.
404
*
405
* @return {@code true} if HTTP redirects should
406
* be automatically followed, {@code false} if not.
407
* @see #setFollowRedirects(boolean)
408
*/
409
public static boolean getFollowRedirects() {
410
return followRedirects;
411
}
412
413
/**
414
* Sets whether HTTP redirects (requests with response code 3xx) should
415
* be automatically followed by this {@code HttpURLConnection}
416
* instance.
417
* <p>
418
* The default value comes from followRedirects, which defaults to
419
* true.
420
*
421
* @param followRedirects a {@code boolean} indicating
422
* whether or not to follow HTTP redirects.
423
*
424
* @see java.net.HttpURLConnection#instanceFollowRedirects
425
* @see #getInstanceFollowRedirects
426
* @since 1.3
427
*/
428
public void setInstanceFollowRedirects(boolean followRedirects) {
429
instanceFollowRedirects = followRedirects;
430
}
431
432
/**
433
* Returns the value of this {@code HttpURLConnection}'s
434
* {@code instanceFollowRedirects} field.
435
*
436
* @return the value of this {@code HttpURLConnection}'s
437
* {@code instanceFollowRedirects} field.
438
* @see java.net.HttpURLConnection#instanceFollowRedirects
439
* @see #setInstanceFollowRedirects(boolean)
440
* @since 1.3
441
*/
442
public boolean getInstanceFollowRedirects() {
443
return instanceFollowRedirects;
444
}
445
446
/**
447
* Set the method for the URL request, one of:
448
* <UL>
449
* <LI>GET
450
* <LI>POST
451
* <LI>HEAD
452
* <LI>OPTIONS
453
* <LI>PUT
454
* <LI>DELETE
455
* <LI>TRACE
456
* </UL> are legal, subject to protocol restrictions. The default
457
* method is GET.
458
*
459
* @param method the HTTP method
460
* @throws ProtocolException if the method cannot be reset or if
461
* the requested method isn't valid for HTTP.
462
* @throws SecurityException if a security manager is set and the
463
* method is "TRACE", but the "allowHttpTrace"
464
* NetPermission is not granted.
465
* @see #getRequestMethod()
466
*/
467
public void setRequestMethod(String method) throws ProtocolException {
468
if (connected) {
469
throw new ProtocolException("Can't reset method: already connected");
470
}
471
// This restriction will prevent people from using this class to
472
// experiment w/ new HTTP methods using java. But it should
473
// be placed for security - the request String could be
474
// arbitrarily long.
475
476
for (int i = 0; i < methods.length; i++) {
477
if (methods[i].equals(method)) {
478
if (method.equals("TRACE")) {
479
@SuppressWarnings("removal")
480
SecurityManager s = System.getSecurityManager();
481
if (s != null) {
482
s.checkPermission(new NetPermission("allowHttpTrace"));
483
}
484
}
485
this.method = method;
486
return;
487
}
488
}
489
throw new ProtocolException("Invalid HTTP method: " + method);
490
}
491
492
/**
493
* Get the request method.
494
* @return the HTTP request method
495
* @see #setRequestMethod(java.lang.String)
496
*/
497
public String getRequestMethod() {
498
return method;
499
}
500
501
/**
502
* Gets the status code from an HTTP response message.
503
* For example, in the case of the following status lines:
504
* <PRE>
505
* HTTP/1.0 200 OK
506
* HTTP/1.0 401 Unauthorized
507
* </PRE>
508
* It will return 200 and 401 respectively.
509
* Returns -1 if no code can be discerned
510
* from the response (i.e., the response is not valid HTTP).
511
* @throws IOException if an error occurred connecting to the server.
512
* @return the HTTP Status-Code, or -1
513
*/
514
public int getResponseCode() throws IOException {
515
/*
516
* We've got the response code already
517
*/
518
if (responseCode != -1) {
519
return responseCode;
520
}
521
522
/*
523
* Ensure that we have connected to the server. Record
524
* exception as we need to re-throw it if there isn't
525
* a status line.
526
*/
527
Exception exc = null;
528
try {
529
getInputStream();
530
} catch (Exception e) {
531
exc = e;
532
}
533
534
/*
535
* If we can't find a status-line then re-throw any exception
536
* that getInputStream threw.
537
*/
538
String statusLine = getHeaderField(0);
539
if (statusLine == null) {
540
if (exc != null) {
541
if (exc instanceof RuntimeException)
542
throw (RuntimeException)exc;
543
else
544
throw (IOException)exc;
545
}
546
return -1;
547
}
548
549
/*
550
* Examine the status-line - should be formatted as per
551
* section 6.1 of RFC 2616 :-
552
*
553
* Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase
554
*
555
* If status line can't be parsed return -1.
556
*/
557
if (statusLine.startsWith("HTTP/1.")) {
558
int codePos = statusLine.indexOf(' ');
559
if (codePos > 0) {
560
561
int phrasePos = statusLine.indexOf(' ', codePos+1);
562
if (phrasePos > 0 && phrasePos < statusLine.length()) {
563
responseMessage = statusLine.substring(phrasePos+1);
564
}
565
566
// deviation from RFC 2616 - don't reject status line
567
// if SP Reason-Phrase is not included.
568
if (phrasePos < 0)
569
phrasePos = statusLine.length();
570
571
try {
572
responseCode = Integer.parseInt
573
(statusLine.substring(codePos+1, phrasePos));
574
return responseCode;
575
} catch (NumberFormatException e) { }
576
}
577
}
578
return -1;
579
}
580
581
/**
582
* Gets the HTTP response message, if any, returned along with the
583
* response code from a server. From responses like:
584
* <PRE>
585
* HTTP/1.0 200 OK
586
* HTTP/1.0 404 Not Found
587
* </PRE>
588
* Extracts the Strings "OK" and "Not Found" respectively.
589
* Returns null if none could be discerned from the responses
590
* (the result was not valid HTTP).
591
* @throws IOException if an error occurred connecting to the server.
592
* @return the HTTP response message, or {@code null}
593
*/
594
public String getResponseMessage() throws IOException {
595
getResponseCode();
596
return responseMessage;
597
}
598
599
@SuppressWarnings("deprecation")
600
public long getHeaderFieldDate(String name, long Default) {
601
String dateString = getHeaderField(name);
602
try {
603
if (dateString.indexOf("GMT") == -1) {
604
dateString = dateString+" GMT";
605
}
606
return Date.parse(dateString);
607
} catch (Exception e) {
608
}
609
return Default;
610
}
611
612
613
/**
614
* Indicates that other requests to the server
615
* are unlikely in the near future. Calling disconnect()
616
* should not imply that this HttpURLConnection
617
* instance can be reused for other requests.
618
*/
619
public abstract void disconnect();
620
621
/**
622
* Indicates if the connection is going through a proxy.
623
*
624
* This method returns {@code true} if the connection is known
625
* to be going or has gone through proxies, and returns {@code false}
626
* if the connection will never go through a proxy or if
627
* the use of a proxy cannot be determined.
628
*
629
* @return a boolean indicating if the connection is using a proxy.
630
*/
631
public abstract boolean usingProxy();
632
633
/**
634
* Returns a {@link SocketPermission} object representing the
635
* permission necessary to connect to the destination host and port.
636
*
637
* @throws IOException if an error occurs while computing
638
* the permission.
639
*
640
* @return a {@code SocketPermission} object representing the
641
* permission necessary to connect to the destination
642
* host and port.
643
*/
644
public Permission getPermission() throws IOException {
645
int port = url.getPort();
646
port = port < 0 ? 80 : port;
647
String host = url.getHost() + ":" + port;
648
Permission permission = new SocketPermission(host, "connect");
649
return permission;
650
}
651
652
/**
653
* Returns the error stream if the connection failed
654
* but the server sent useful data nonetheless. The
655
* typical example is when an HTTP server responds
656
* with a 404, which will cause a FileNotFoundException
657
* to be thrown in connect, but the server sent an HTML
658
* help page with suggestions as to what to do.
659
*
660
* <p>This method will not cause a connection to be initiated. If
661
* the connection was not connected, or if the server did not have
662
* an error while connecting or if the server had an error but
663
* no error data was sent, this method will return null. This is
664
* the default.
665
*
666
* @return an error stream if any, null if there have been no
667
* errors, the connection is not connected or the server sent no
668
* useful data.
669
*/
670
public InputStream getErrorStream() {
671
return null;
672
}
673
674
/**
675
* The response codes for HTTP, as of version 1.1.
676
*/
677
678
// REMIND: do we want all these??
679
// Others not here that we do want??
680
681
/* 2XX: generally "OK" */
682
683
/**
684
* HTTP Status-Code 200: OK.
685
*/
686
public static final int HTTP_OK = 200;
687
688
/**
689
* HTTP Status-Code 201: Created.
690
*/
691
public static final int HTTP_CREATED = 201;
692
693
/**
694
* HTTP Status-Code 202: Accepted.
695
*/
696
public static final int HTTP_ACCEPTED = 202;
697
698
/**
699
* HTTP Status-Code 203: Non-Authoritative Information.
700
*/
701
public static final int HTTP_NOT_AUTHORITATIVE = 203;
702
703
/**
704
* HTTP Status-Code 204: No Content.
705
*/
706
public static final int HTTP_NO_CONTENT = 204;
707
708
/**
709
* HTTP Status-Code 205: Reset Content.
710
*/
711
public static final int HTTP_RESET = 205;
712
713
/**
714
* HTTP Status-Code 206: Partial Content.
715
*/
716
public static final int HTTP_PARTIAL = 206;
717
718
/* 3XX: relocation/redirect */
719
720
/**
721
* HTTP Status-Code 300: Multiple Choices.
722
*/
723
public static final int HTTP_MULT_CHOICE = 300;
724
725
/**
726
* HTTP Status-Code 301: Moved Permanently.
727
*/
728
public static final int HTTP_MOVED_PERM = 301;
729
730
/**
731
* HTTP Status-Code 302: Temporary Redirect.
732
*/
733
public static final int HTTP_MOVED_TEMP = 302;
734
735
/**
736
* HTTP Status-Code 303: See Other.
737
*/
738
public static final int HTTP_SEE_OTHER = 303;
739
740
/**
741
* HTTP Status-Code 304: Not Modified.
742
*/
743
public static final int HTTP_NOT_MODIFIED = 304;
744
745
/**
746
* HTTP Status-Code 305: Use Proxy.
747
*/
748
public static final int HTTP_USE_PROXY = 305;
749
750
/* 4XX: client error */
751
752
/**
753
* HTTP Status-Code 400: Bad Request.
754
*/
755
public static final int HTTP_BAD_REQUEST = 400;
756
757
/**
758
* HTTP Status-Code 401: Unauthorized.
759
*/
760
public static final int HTTP_UNAUTHORIZED = 401;
761
762
/**
763
* HTTP Status-Code 402: Payment Required.
764
*/
765
public static final int HTTP_PAYMENT_REQUIRED = 402;
766
767
/**
768
* HTTP Status-Code 403: Forbidden.
769
*/
770
public static final int HTTP_FORBIDDEN = 403;
771
772
/**
773
* HTTP Status-Code 404: Not Found.
774
*/
775
public static final int HTTP_NOT_FOUND = 404;
776
777
/**
778
* HTTP Status-Code 405: Method Not Allowed.
779
*/
780
public static final int HTTP_BAD_METHOD = 405;
781
782
/**
783
* HTTP Status-Code 406: Not Acceptable.
784
*/
785
public static final int HTTP_NOT_ACCEPTABLE = 406;
786
787
/**
788
* HTTP Status-Code 407: Proxy Authentication Required.
789
*/
790
public static final int HTTP_PROXY_AUTH = 407;
791
792
/**
793
* HTTP Status-Code 408: Request Time-Out.
794
*/
795
public static final int HTTP_CLIENT_TIMEOUT = 408;
796
797
/**
798
* HTTP Status-Code 409: Conflict.
799
*/
800
public static final int HTTP_CONFLICT = 409;
801
802
/**
803
* HTTP Status-Code 410: Gone.
804
*/
805
public static final int HTTP_GONE = 410;
806
807
/**
808
* HTTP Status-Code 411: Length Required.
809
*/
810
public static final int HTTP_LENGTH_REQUIRED = 411;
811
812
/**
813
* HTTP Status-Code 412: Precondition Failed.
814
*/
815
public static final int HTTP_PRECON_FAILED = 412;
816
817
/**
818
* HTTP Status-Code 413: Request Entity Too Large.
819
*/
820
public static final int HTTP_ENTITY_TOO_LARGE = 413;
821
822
/**
823
* HTTP Status-Code 414: Request-URI Too Large.
824
*/
825
public static final int HTTP_REQ_TOO_LONG = 414;
826
827
/**
828
* HTTP Status-Code 415: Unsupported Media Type.
829
*/
830
public static final int HTTP_UNSUPPORTED_TYPE = 415;
831
832
/* 5XX: server error */
833
834
/**
835
* HTTP Status-Code 500: Internal Server Error.
836
* @deprecated it is misplaced and shouldn't have existed.
837
*/
838
@Deprecated
839
public static final int HTTP_SERVER_ERROR = 500;
840
841
/**
842
* HTTP Status-Code 500: Internal Server Error.
843
*/
844
public static final int HTTP_INTERNAL_ERROR = 500;
845
846
/**
847
* HTTP Status-Code 501: Not Implemented.
848
*/
849
public static final int HTTP_NOT_IMPLEMENTED = 501;
850
851
/**
852
* HTTP Status-Code 502: Bad Gateway.
853
*/
854
public static final int HTTP_BAD_GATEWAY = 502;
855
856
/**
857
* HTTP Status-Code 503: Service Unavailable.
858
*/
859
public static final int HTTP_UNAVAILABLE = 503;
860
861
/**
862
* HTTP Status-Code 504: Gateway Timeout.
863
*/
864
public static final int HTTP_GATEWAY_TIMEOUT = 504;
865
866
/**
867
* HTTP Status-Code 505: HTTP Version Not Supported.
868
*/
869
public static final int HTTP_VERSION = 505;
870
871
}
872
873