jdk/src/share/classes/java/net/HttpURLConnection.java
author jccollet
Wed, 21 Oct 2009 13:42:39 +0200
changeset 4154 afd948aaf965
parent 1639 a97859015238
child 5506 202f599c92aa
permissions -rw-r--r--
6873543: CookieManager doesn't enforce httpOnly Summary: Adds check for httpOnly tag and clarifies javadoc Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
1639
a97859015238 6785258: Update copyright year
xdono
parents: 1576
diff changeset
     2
 * Copyright 1996-2008 Sun Microsystems, Inc.  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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see     java.net.HttpURLConnection#disconnect()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @since JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
abstract public class HttpURLConnection extends URLConnection {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /* instance variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * The HTTP method (GET,POST,PUT,etc.).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    protected String method = "GET";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * The chunk-length when using chunked encoding streaming mode for output.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * A value of <code>-1</code> means chunked encoding is disabled for output.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    protected int chunkLength = -1;
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 fixed content-length when using fixed-length streaming mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * A value of <code>-1</code> means fixed-length streaming mode is disabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * for output.
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    76
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    77
     * <P> <B>NOTE:</B> {@link #fixedContentLengthLong} is recommended instead
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    78
     * of this field, as it allows larger content lengths to be set.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    79
     *
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 fixedContentLength = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    85
     * The fixed content-length when using fixed-length streaming mode.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    86
     * A value of {@code -1} means fixed-length streaming mode is disabled
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    87
     * for output.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    88
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    89
     * @since 1.7
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    90
     */
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    91
    protected long fixedContentLengthLong = -1;
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    92
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
    93
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Returns the key for the <code>n</code><sup>th</sup> header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * Some implementations may treat the <code>0</code><sup>th</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * header field as special, i.e. as the status line returned by the HTTP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * server. In this case, {@link #getHeaderField(int) getHeaderField(0)} returns the status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * line, but <code>getHeaderFieldKey(0)</code> returns null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @param   n   an index, where n >=0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @return  the key for the <code>n</code><sup>th</sup> header field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *          or <code>null</code> if the key does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public String getHeaderFieldKey (int n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * This method is used to enable streaming of a HTTP request body
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * without internal buffering, when the content length is known in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * advance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * An exception will be thrown if the application
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * attempts to write more data than the indicated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * content-length, or if the application closes the OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * before writing the indicated amount.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * When output streaming is enabled, authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * and redirection cannot be handled automatically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * A HttpRetryException will be thrown when reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * the response if authentication or redirection are required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * This exception can be queried for the details of the error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * This method must be called before the URLConnection is connected.
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   125
     * <p>
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   126
     * <B>NOTE:</B> {@link #setFixedLengthStreamingMode(long)} is recommended
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   127
     * instead of this method as it allows larger content lengths to be set.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @param   contentLength The number of bytes which will be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *          to the OutputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @throws  IllegalStateException if URLConnection is already connected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *          or if a different streaming mode is already enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @throws  IllegalArgumentException if a content length less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *          zero is specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @see     #setChunkedStreamingMode(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public void setFixedLengthStreamingMode (int contentLength) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        if (connected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            throw new IllegalStateException ("Already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        if (chunkLength != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            throw new IllegalStateException ("Chunked encoding streaming mode set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        if (contentLength < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            throw new IllegalArgumentException ("invalid content length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        fixedContentLength = contentLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   154
    /**
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   155
     * This method is used to enable streaming of a HTTP request body
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   156
     * without internal buffering, when the content length is known in
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   157
     * advance.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   158
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   159
     * <P> An exception will be thrown if the application attempts to write
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   160
     * more data than the indicated content-length, or if the application
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   161
     * closes the OutputStream before writing the indicated amount.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   162
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   163
     * <P> When output streaming is enabled, authentication and redirection
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   164
     * cannot be handled automatically. A {@linkplain HttpRetryException} will
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   165
     * be thrown when reading the response if authentication or redirection
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   166
     * are required. This exception can be queried for the details of the
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   167
     * error.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   168
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   169
     * <P> This method must be called before the URLConnection is connected.
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> The content length set by invoking this method takes precedence
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   172
     * over any value set by {@link #setFixedLengthStreamingMode(int)}.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   173
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   174
     * @param  contentLength
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   175
     *         The number of bytes which will be written to the OutputStream.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   176
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   177
     * @throws  IllegalStateException
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   178
     *          if URLConnection is already connected or if a different
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   179
     *          streaming mode is already enabled.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   180
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   181
     * @throws  IllegalArgumentException
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   182
     *          if a content length less than zero is specified.
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   183
     *
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   184
     * @since 1.7
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   185
     */
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   186
    public void setFixedLengthStreamingMode(long contentLength) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   187
        if (connected) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   188
            throw new IllegalStateException("Already connected");
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   189
        }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   190
        if (chunkLength != -1) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   191
            throw new IllegalStateException(
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   192
                "Chunked encoding streaming mode set");
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   193
        }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   194
        if (contentLength < 0) {
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   195
            throw new IllegalArgumentException("invalid content length");
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   196
        }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   197
        fixedContentLengthLong = contentLength;
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   198
    }
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   199
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /* Default chunk size (including chunk header) if not specified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * we want to keep this in sync with the one defined in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * sun.net.www.http.ChunkedOutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    private static final int DEFAULT_CHUNK_SIZE = 4096;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * This method is used to enable streaming of a HTTP request body
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * without internal buffering, when the content length is <b>not</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * known in advance. In this mode, chunked transfer encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * is used to send the request body. Note, not all HTTP servers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * support this mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * When output streaming is enabled, authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * and redirection cannot be handled automatically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * A HttpRetryException will be thrown when reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * the response if authentication or redirection are required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * This exception can be queried for the details of the error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * This method must be called before the URLConnection is connected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param   chunklen The number of bytes to write in each chunk.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *          If chunklen is less than or equal to zero, a default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *          value will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @throws  IllegalStateException if URLConnection is already connected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *          or if a different streaming mode is already enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @see     #setFixedLengthStreamingMode(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    public void setChunkedStreamingMode (int chunklen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        if (connected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            throw new IllegalStateException ("Can't set streaming mode: already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
1576
b697b141012d 6755625: Add HttpURLConnection.setFixedLengthStreamingMode(long)
chegar
parents: 2
diff changeset
   235
        if (fixedContentLength != -1 || fixedContentLengthLong != -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            throw new IllegalStateException ("Fixed length streaming mode set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        chunkLength = chunklen <=0? DEFAULT_CHUNK_SIZE : chunklen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * Returns the value for the <code>n</code><sup>th</sup> header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * Some implementations may treat the <code>0</code><sup>th</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * header field as special, i.e. as the status line returned by the HTTP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * This method can be used in conjunction with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * {@link #getHeaderFieldKey getHeaderFieldKey} method to iterate through all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * the headers in the message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @param   n   an index, where n>=0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @return  the value of the <code>n</code><sup>th</sup> header field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *          or <code>null</code> if the value does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @see     java.net.HttpURLConnection#getHeaderFieldKey(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public String getHeaderField(int n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * An <code>int</code> representing the three digit HTTP Status-Code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * <li> 1xx: Informational
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * <li> 2xx: Success
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * <li> 3xx: Redirection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * <li> 4xx: Client Error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * <li> 5xx: Server Error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    protected int responseCode = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * The HTTP response message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    protected String responseMessage = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /* static variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /* do we automatically follow redirects? The default is true. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    private static boolean followRedirects = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * If <code>true</code>, the protocol will automatically follow redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * If <code>false</code>, the protocol will not automatically follow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * This field is set by the <code>setInstanceFollowRedirects</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * method. Its value is returned by the <code>getInstanceFollowRedirects</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * Its default value is based on the value of the static followRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * at HttpURLConnection construction time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @see     java.net.HttpURLConnection#setInstanceFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @see     java.net.HttpURLConnection#getInstanceFollowRedirects()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @see     java.net.HttpURLConnection#setFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    protected boolean instanceFollowRedirects = followRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /* valid HTTP methods */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    private static final String[] methods = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        "GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * Constructor for the HttpURLConnection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @param u the URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    protected HttpURLConnection (URL u) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        super(u);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * Sets whether HTTP redirects  (requests with response code 3xx) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * be automatically followed by this class.  True by default.  Applets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * cannot change this variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * If there is a security manager, this method first calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * the security manager's <code>checkSetFactory</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @param set a <code>boolean</code> indicating whether or not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * to follow HTTP redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *             <code>checkSetFactory</code> method doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *             allow the operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * @see        SecurityManager#checkSetFactory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @see #getFollowRedirects()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    public static void setFollowRedirects(boolean set) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        SecurityManager sec = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        if (sec != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            // seems to be the best check here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            sec.checkSetFactory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        followRedirects = set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Returns a <code>boolean</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * whether or not HTTP redirects (3xx) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * be automatically followed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @return <code>true</code> if HTTP redirects should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * be automatically followed, <tt>false</tt> if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @see #setFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public static boolean getFollowRedirects() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        return followRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * Sets whether HTTP redirects (requests with response code 3xx) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * be automatically followed by this <code>HttpURLConnection</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * The default value comes from followRedirects, which defaults to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @param followRedirects a <code>boolean</code> indicating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * whether or not to follow HTTP redirects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @see    java.net.HttpURLConnection#instanceFollowRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @see #getInstanceFollowRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     public void setInstanceFollowRedirects(boolean followRedirects) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        instanceFollowRedirects = followRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * Returns the value of this <code>HttpURLConnection</code>'s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * <code>instanceFollowRedirects</code> field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @return  the value of this <code>HttpURLConnection</code>'s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *          <code>instanceFollowRedirects</code> field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * @see     java.net.HttpURLConnection#instanceFollowRedirects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @see #setInstanceFollowRedirects(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     public boolean getInstanceFollowRedirects() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
         return instanceFollowRedirects;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * Set the method for the URL request, one of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *  <LI>GET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *  <LI>POST
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *  <LI>HEAD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *  <LI>OPTIONS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     *  <LI>PUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *  <LI>DELETE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *  <LI>TRACE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * </UL> are legal, subject to protocol restrictions.  The default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * method is GET.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * @param method the HTTP method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @exception ProtocolException if the method cannot be reset or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *              the requested method isn't valid for HTTP.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * @see #getRequestMethod()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    public void setRequestMethod(String method) throws ProtocolException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        if (connected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            throw new ProtocolException("Can't reset method: already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        // This restriction will prevent people from using this class to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        // experiment w/ new HTTP methods using java.  But it should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        // be placed for security - the request String could be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        // arbitrarily long.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        for (int i = 0; i < methods.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            if (methods[i].equals(method)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                this.method = method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        throw new ProtocolException("Invalid HTTP method: " + method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * Get the request method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * @return the HTTP request method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * @see #setRequestMethod(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    public String getRequestMethod() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        return method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * Gets the status code from an HTTP response message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * For example, in the case of the following status lines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * HTTP/1.0 200 OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * HTTP/1.0 401 Unauthorized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * It will return 200 and 401 respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * Returns -1 if no code can be discerned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * from the response (i.e., the response is not valid HTTP).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @throws IOException if an error occurred connecting to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @return the HTTP Status-Code, or -1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    public int getResponseCode() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
         * We're got the response code already
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        if (responseCode != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            return responseCode;
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
         * Ensure that we have connected to the server. Record
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
         * exception as we need to re-throw it if there isn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
         * a status line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        Exception exc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
            getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            exc = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
         * If we can't a status-line then re-throw any exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
         * that getInputStream threw.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        String statusLine = getHeaderField(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        if (statusLine == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            if (exc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                if (exc instanceof RuntimeException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                    throw (RuntimeException)exc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                    throw (IOException)exc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
         * Examine the status-line - should be formatted as per
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
         * section 6.1 of RFC 2616 :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
         * Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
         * If status line can't be parsed return -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        if (statusLine.startsWith("HTTP/1.")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            int codePos = statusLine.indexOf(' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            if (codePos > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                int phrasePos = statusLine.indexOf(' ', codePos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                if (phrasePos > 0 && phrasePos < statusLine.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                    responseMessage = statusLine.substring(phrasePos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                // deviation from RFC 2616 - don't reject status line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                // if SP Reason-Phrase is not included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                if (phrasePos < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                    phrasePos = statusLine.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                    responseCode = Integer.parseInt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                            (statusLine.substring(codePos+1, phrasePos));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                    return responseCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                } catch (NumberFormatException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * Gets the HTTP response message, if any, returned along with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * response code from a server.  From responses like:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * HTTP/1.0 200 OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * HTTP/1.0 404 Not Found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * Extracts the Strings "OK" and "Not Found" respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * Returns null if none could be discerned from the responses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * (the result was not valid HTTP).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @throws IOException if an error occurred connecting to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * @return the HTTP response message, or <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    public String getResponseMessage() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        getResponseCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        return responseMessage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    public long getHeaderFieldDate(String name, long Default) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        String dateString = getHeaderField(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            if (dateString.indexOf("GMT") == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                dateString = dateString+" GMT";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            return Date.parse(dateString);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        return Default;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * Indicates that other requests to the server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * are unlikely in the near future. Calling disconnect()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * should not imply that this HttpURLConnection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * instance can be reused for other requests.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    public abstract void disconnect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * Indicates if the connection is going through a proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @return a boolean indicating if the connection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * using a proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    public abstract boolean usingProxy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * Returns a {@link SocketPermission} object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * permission necessary to connect to the destination host and port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @exception IOException if an error occurs while computing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *            the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * @return a <code>SocketPermission</code> object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     *         permission necessary to connect to the destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     *         host and port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    public Permission getPermission() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        int port = url.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        port = port < 0 ? 80 : port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        String host = url.getHost() + ":" + port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        Permission permission = new SocketPermission(host, "connect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        return permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    * Returns the error stream if the connection failed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    * but the server sent useful data nonetheless. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
    * typical example is when an HTTP server responds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    * with a 404, which will cause a FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    * to be thrown in connect, but the server sent an HTML
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    * help page with suggestions as to what to do.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    * <p>This method will not cause a connection to be initiated.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    * the connection was not connected, or if the server did not have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    * an error while connecting or if the server had an error but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    * no error data was sent, this method will return null. This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    * the default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    * @return an error stream if any, null if there have been no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    * errors, the connection is not connected or the server sent no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    * useful data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    public InputStream getErrorStream() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        return null;
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
     * The response codes for HTTP, as of version 1.1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    // REMIND: do we want all these??
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    // Others not here that we do want??
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    /* 2XX: generally "OK" */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * HTTP Status-Code 200: OK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    public static final int HTTP_OK = 200;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * HTTP Status-Code 201: Created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    public static final int HTTP_CREATED = 201;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * HTTP Status-Code 202: Accepted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    public static final int HTTP_ACCEPTED = 202;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * HTTP Status-Code 203: Non-Authoritative Information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    public static final int HTTP_NOT_AUTHORITATIVE = 203;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * HTTP Status-Code 204: No Content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    public static final int HTTP_NO_CONTENT = 204;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * HTTP Status-Code 205: Reset Content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    public static final int HTTP_RESET = 205;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * HTTP Status-Code 206: Partial Content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    public static final int HTTP_PARTIAL = 206;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    /* 3XX: relocation/redirect */
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 300: Multiple Choices.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    public static final int HTTP_MULT_CHOICE = 300;
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 301: Moved Permanently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    public static final int HTTP_MOVED_PERM = 301;
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 302: Temporary Redirect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    public static final int HTTP_MOVED_TEMP = 302;
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 303: See Other.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    public static final int HTTP_SEE_OTHER = 303;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * HTTP Status-Code 304: Not Modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    public static final int HTTP_NOT_MODIFIED = 304;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * HTTP Status-Code 305: Use Proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    public static final int HTTP_USE_PROXY = 305;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    /* 4XX: client error */
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 400: Bad Request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    public static final int HTTP_BAD_REQUEST = 400;
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 401: Unauthorized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    public static final int HTTP_UNAUTHORIZED = 401;
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 402: Payment Required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    public static final int HTTP_PAYMENT_REQUIRED = 402;
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 403: Forbidden.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    public static final int HTTP_FORBIDDEN = 403;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * HTTP Status-Code 404: Not Found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    public static final int HTTP_NOT_FOUND = 404;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * HTTP Status-Code 405: Method Not Allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    public static final int HTTP_BAD_METHOD = 405;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * HTTP Status-Code 406: Not Acceptable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    public static final int HTTP_NOT_ACCEPTABLE = 406;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * HTTP Status-Code 407: Proxy Authentication Required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
    public static final int HTTP_PROXY_AUTH = 407;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * HTTP Status-Code 408: Request Time-Out.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    public static final int HTTP_CLIENT_TIMEOUT = 408;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * HTTP Status-Code 409: Conflict.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    public static final int HTTP_CONFLICT = 409;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * HTTP Status-Code 410: Gone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    public static final int HTTP_GONE = 410;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * HTTP Status-Code 411: Length Required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    public static final int HTTP_LENGTH_REQUIRED = 411;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * HTTP Status-Code 412: Precondition Failed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    public static final int HTTP_PRECON_FAILED = 412;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     * HTTP Status-Code 413: Request Entity Too Large.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
    public static final int HTTP_ENTITY_TOO_LARGE = 413;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * HTTP Status-Code 414: Request-URI Too Large.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    public static final int HTTP_REQ_TOO_LONG = 414;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * HTTP Status-Code 415: Unsupported Media Type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    public static final int HTTP_UNSUPPORTED_TYPE = 415;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    /* 5XX: server error */
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 500: Internal Server Error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * @deprecated   it is misplaced and shouldn't have existed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    public static final int HTTP_SERVER_ERROR = 500;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * HTTP Status-Code 500: Internal Server Error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    public static final int HTTP_INTERNAL_ERROR = 500;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * HTTP Status-Code 501: Not Implemented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    public static final int HTTP_NOT_IMPLEMENTED = 501;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * HTTP Status-Code 502: Bad Gateway.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    public static final int HTTP_BAD_GATEWAY = 502;
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 503: Service Unavailable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    public static final int HTTP_UNAVAILABLE = 503;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * HTTP Status-Code 504: Gateway Timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    public static final int HTTP_GATEWAY_TIMEOUT = 504;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * HTTP Status-Code 505: HTTP Version Not Supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    public static final int HTTP_VERSION = 505;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
}