src/java.base/share/classes/java/net/ProxySelector.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58242 94bb65cb37d3
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
57879
095c2f21dd10 8177648: getResponseCode() throws IllegalArgumentException caused by protocol error while following redirect
michaelm
parents: 52499
diff changeset
     2
 * Copyright (c) 2003, 2019, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Selects the proxy server to use, if any, when connecting to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * network resource referenced by a URL. A proxy selector is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * concrete sub-class of this class and is registered by invoking the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * {@link java.net.ProxySelector#setDefault setDefault} method. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * currently registered proxy selector can be retrieved by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * {@link java.net.ProxySelector#getDefault getDefault} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <p> When a proxy selector is registered, for instance, a subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * of URLConnection class should call the {@link #select select}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * method for each URL request so that the proxy selector can decide
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * if a direct, or proxied connection should be used. The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * #select select} method returns an iterator over a collection with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * the preferred connection approach.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p> If a connection cannot be established to a proxy (PROXY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * SOCKS) servers then the caller should call the proxy selector's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * {@link #connectFailed connectFailed} method to notify the proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * selector that the proxy server is unavailable. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <P>The default proxy selector does enforce a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <a href="doc-files/net-properties.html#Proxies">set of System Properties</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * related to proxy settings.</P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @author Yingxian Wang
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @author Jean-Christophe Collet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
public abstract class ProxySelector {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * The system wide proxy selector that selects the proxy server to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * use, if any, when connecting to a remote object referenced by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * an URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @see #setDefault(ProxySelector)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private static ProxySelector theProxySelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        try {
10596
39b3a979e600 7090158: Networking Libraries don't build with javac -Werror
chegar
parents: 5506
diff changeset
    72
            Class<?> c = Class.forName("sun.net.spi.DefaultProxySelector");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            if (c != null && ProxySelector.class.isAssignableFrom(c)) {
37782
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 36131
diff changeset
    74
                @SuppressWarnings("deprecation")
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 36131
diff changeset
    75
                ProxySelector tmp = (ProxySelector) c.newInstance();
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 36131
diff changeset
    76
                theProxySelector = tmp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            theProxySelector = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Gets the system-wide proxy selector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *          If a security manager has been installed and it denies
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57879
diff changeset
    88
     *          {@link NetPermission}{@code ("getProxySelector")}
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57879
diff changeset
    89
     * @see     #setDefault(ProxySelector)
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57879
diff changeset
    90
     * @return  the system-wide {@code ProxySelector}
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57879
diff changeset
    91
     * @since   1.5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public static ProxySelector getDefault() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            sm.checkPermission(SecurityConstants.GET_PROXYSELECTOR_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        return theProxySelector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * Sets (or unsets) the system-wide proxy selector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Note: non-standard protocol handlers may ignore this setting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @param ps The HTTP proxy selector, or
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   107
     *          {@code null} to unset the proxy selector.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     *          If a security manager has been installed and it denies
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57879
diff changeset
   111
     *          {@link NetPermission}{@code ("setProxySelector")}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @see #getDefault()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    public static void setDefault(ProxySelector ps) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            sm.checkPermission(SecurityConstants.SET_PROXYSELECTOR_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        theProxySelector = ps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * Selects all the applicable proxies based on the protocol to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * access the resource with and a destination address to access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * the resource at.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * The format of the URI is defined as follow:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * <LI>http URI for http connections</LI>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * <LI>https URI for https connections
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   132
     * <LI>{@code socket://host:port}<br>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *     for tcp client sockets connections</LI>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param   uri
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *          The URI that a connection is required to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 47216
diff changeset
   139
     * @return  a List of Proxies. Each element in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *          the List is of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *          {@link java.net.Proxy Proxy};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *          when no proxy is available, the list will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *          contain one element of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *          {@link java.net.Proxy Proxy}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *          that represents a direct connection.
57879
095c2f21dd10 8177648: getResponseCode() throws IllegalArgumentException caused by protocol error while following redirect
michaelm
parents: 52499
diff changeset
   146
     * @throws IllegalArgumentException if the argument is null or if
095c2f21dd10 8177648: getResponseCode() throws IllegalArgumentException caused by protocol error while following redirect
michaelm
parents: 52499
diff changeset
   147
     *         the protocol or host cannot be determined from the provided
095c2f21dd10 8177648: getResponseCode() throws IllegalArgumentException caused by protocol error while following redirect
michaelm
parents: 52499
diff changeset
   148
     *         {@code uri}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    public abstract List<Proxy> select(URI uri);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Called to indicate that a connection could not be established
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * to a proxy/socks server. An implementation of this method can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * temporarily remove the proxies or reorder the sequence of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * proxies returned by {@link #select(URI)}, using the address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * and the IOException caught when trying to connect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param   uri
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *          The URI that the proxy at sa failed to serve.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @param   sa
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *          The socket address of the proxy/SOCKS server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @param   ioe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *          The I/O exception thrown when the connect failed.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57879
diff changeset
   166
     * @throws  IllegalArgumentException if either argument is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public abstract void connectFailed(URI uri, SocketAddress sa, IOException ioe);
36131
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   169
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   170
    /**
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   171
     * Returns a ProxySelector which uses the given proxy address for all HTTP
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   172
     * and HTTPS requests. If proxy is {@code null} then proxying is disabled.
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   173
     *
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   174
     * @param proxyAddress
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   175
     *        The address of the proxy
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   176
     *
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   177
     * @return a ProxySelector
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   178
     *
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   179
     * @since 9
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   180
     */
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   181
    public static ProxySelector of(InetSocketAddress proxyAddress) {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   182
        return new StaticProxySelector(proxyAddress);
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   183
    }
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   184
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   185
    static class StaticProxySelector extends ProxySelector {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   186
        private static final List<Proxy> NO_PROXY_LIST = List.of(Proxy.NO_PROXY);
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   187
        final List<Proxy> list;
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   188
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   189
        StaticProxySelector(InetSocketAddress address){
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   190
            Proxy p;
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   191
            if (address == null) {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   192
                p = Proxy.NO_PROXY;
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   193
            } else {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   194
                p = new Proxy(Proxy.Type.HTTP, address);
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   195
            }
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   196
            list = List.of(p);
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   197
        }
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   198
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   199
        @Override
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   200
        public void connectFailed(URI uri, SocketAddress sa, IOException e) {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   201
            /* ignore */
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   202
        }
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   203
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   204
        @Override
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   205
        public synchronized List<Proxy> select(URI uri) {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   206
            String scheme = uri.getScheme().toLowerCase();
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   207
            if (scheme.equals("http") || scheme.equals("https")) {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   208
                return list;
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   209
            } else {
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   210
                return NO_PROXY_LIST;
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   211
            }
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   212
        }
379db4b2f95d 8087112: HTTP API and HTTP/1.1 implementation
michaelm
parents: 25859
diff changeset
   213
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
}