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