|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
/* |
|
* NOTE: This class lives in the package sun.net.www.protocol.https. |
|
* There is a copy in com.sun.net.ssl.internal.www.protocol.https for JSSE |
|
* 1.0.2 compatibility. It is 100% identical except the package and extends |
|
* lines. Any changes should be made to be class in sun.net.* and then copied |
|
* to com.sun.net.*. |
|
*/ |
|
|
|
// For both copies of the file, uncomment one line and comment the other |
|
|
|
package com.sun.net.ssl.internal.www.protocol.https; |
|
|
|
import java.net.URL; |
|
import java.net.Proxy; |
|
import java.net.ProtocolException; |
|
import java.net.MalformedURLException; |
|
import java.io.*; |
|
import java.net.Authenticator; |
|
import javax.net.ssl.*; |
|
import java.security.Permission; |
|
import java.util.Map; |
|
import java.util.List; |
|
import sun.net.www.http.HttpClient; |
|
|
|
/** |
|
* A class to represent an HTTP connection to a remote object. |
|
* |
|
* Ideally, this class should subclass and inherit the http handler |
|
* implementation, but it can't do so because that class have the |
|
* wrong Java Type. Thus it uses the delegate (aka, the |
|
* Adapter/Wrapper design pattern) to reuse code from the http |
|
* handler. |
|
* |
|
* Since it would use a delegate to access |
|
* sun.net.www.protocol.http.HttpURLConnection functionalities, it |
|
* needs to implement all public methods in it's super class and all |
|
* the way to Object. |
|
* |
|
*/ |
|
|
|
// For both copies of the file, uncomment one line and comment the other |
|
// public class HttpsURLConnectionImpl |
|
|
|
@Deprecated(since="9") |
|
@SuppressWarnings("deprecation") |
|
public class HttpsURLConnectionOldImpl |
|
extends com.sun.net.ssl.HttpsURLConnection { |
|
|
|
private DelegateHttpsURLConnection delegate; |
|
|
|
// For both copies of the file, uncomment one line and comment the other |
|
|
|
HttpsURLConnectionOldImpl(URL u, Handler handler) throws IOException { |
|
this(u, null, handler); |
|
} |
|
|
|
static URL checkURL(URL u) throws IOException { |
|
if (u != null) { |
|
if (u.toExternalForm().indexOf('\n') > -1) { |
|
throw new MalformedURLException("Illegal character in URL"); |
|
} |
|
} |
|
return u; |
|
} |
|
// For both copies of the file, uncomment one line and comment the other |
|
|
|
HttpsURLConnectionOldImpl(URL u, Proxy p, Handler handler) throws IOException { |
|
super(checkURL(u)); |
|
delegate = new DelegateHttpsURLConnection(url, p, handler, this); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected void setNewClient(URL url) throws IOException { |
|
delegate.setNewClient(url, false); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected void setNewClient(URL url, boolean useCache) |
|
throws IOException { |
|
delegate.setNewClient(url, useCache); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected void setProxiedClient(URL url, String proxyHost, int proxyPort) |
|
throws IOException { |
|
delegate.setProxiedClient(url, proxyHost, proxyPort); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected void setProxiedClient(URL url, String proxyHost, int proxyPort, |
|
boolean useCache) throws IOException { |
|
delegate.setProxiedClient(url, proxyHost, proxyPort, useCache); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void connect() throws IOException { |
|
delegate.connect(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected boolean isConnected() { |
|
return delegate.isConnected(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected void setConnected(boolean conn) { |
|
delegate.setConnected(conn); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public String getCipherSuite() { |
|
return delegate.getCipherSuite(); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public java.security.cert.Certificate [] |
|
getLocalCertificates() { |
|
return delegate.getLocalCertificates(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public java.security.cert.Certificate [] |
|
getServerCertificates() throws SSLPeerUnverifiedException { |
|
return delegate.getServerCertificates(); |
|
} |
|
|
|
/* |
|
* Allowable input/output sequences: |
|
* [interpreted as POST/PUT] |
|
* - get output, [write output,] get input, [read input] |
|
* - get output, [write output] |
|
* [interpreted as GET] |
|
* - get input, [read input] |
|
* Disallowed: |
|
* - get input, [read input,] get output, [write output] |
|
*/ |
|
|
|
public synchronized OutputStream getOutputStream() throws IOException { |
|
return delegate.getOutputStream(); |
|
} |
|
|
|
public synchronized InputStream getInputStream() throws IOException { |
|
return delegate.getInputStream(); |
|
} |
|
|
|
public InputStream getErrorStream() { |
|
return delegate.getErrorStream(); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public void disconnect() { |
|
delegate.disconnect(); |
|
} |
|
|
|
public boolean usingProxy() { |
|
return delegate.usingProxy(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public Map<String,List<String>> getHeaderFields() { |
|
return delegate.getHeaderFields(); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String getHeaderField(String name) { |
|
return delegate.getHeaderField(name); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String getHeaderField(int n) { |
|
return delegate.getHeaderField(n); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String getHeaderFieldKey(int n) { |
|
return delegate.getHeaderFieldKey(n); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void setRequestProperty(String key, String value) { |
|
delegate.setRequestProperty(key, value); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public void addRequestProperty(String key, String value) { |
|
delegate.addRequestProperty(key, value); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public int getResponseCode() throws IOException { |
|
return delegate.getResponseCode(); |
|
} |
|
|
|
public String getRequestProperty(String key) { |
|
return delegate.getRequestProperty(key); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public Map<String,List<String>> getRequestProperties() { |
|
return delegate.getRequestProperties(); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public void setInstanceFollowRedirects(boolean shouldFollow) { |
|
delegate.setInstanceFollowRedirects(shouldFollow); |
|
} |
|
|
|
public boolean getInstanceFollowRedirects() { |
|
return delegate.getInstanceFollowRedirects(); |
|
} |
|
|
|
public void setRequestMethod(String method) throws ProtocolException { |
|
delegate.setRequestMethod(method); |
|
} |
|
|
|
public String getRequestMethod() { |
|
return delegate.getRequestMethod(); |
|
} |
|
|
|
public String getResponseMessage() throws IOException { |
|
return delegate.getResponseMessage(); |
|
} |
|
|
|
public long getHeaderFieldDate(String name, long Default) { |
|
return delegate.getHeaderFieldDate(name, Default); |
|
} |
|
|
|
public Permission getPermission() throws IOException { |
|
return delegate.getPermission(); |
|
} |
|
|
|
public URL getURL() { |
|
return delegate.getURL(); |
|
} |
|
|
|
public int getContentLength() { |
|
return delegate.getContentLength(); |
|
} |
|
|
|
public long getContentLengthLong() { |
|
return delegate.getContentLengthLong(); |
|
} |
|
|
|
public String getContentType() { |
|
return delegate.getContentType(); |
|
} |
|
|
|
public String getContentEncoding() { |
|
return delegate.getContentEncoding(); |
|
} |
|
|
|
public long getExpiration() { |
|
return delegate.getExpiration(); |
|
} |
|
|
|
public long getDate() { |
|
return delegate.getDate(); |
|
} |
|
|
|
public long getLastModified() { |
|
return delegate.getLastModified(); |
|
} |
|
|
|
public int getHeaderFieldInt(String name, int Default) { |
|
return delegate.getHeaderFieldInt(name, Default); |
|
} |
|
|
|
public long getHeaderFieldLong(String name, long Default) { |
|
return delegate.getHeaderFieldLong(name, Default); |
|
} |
|
|
|
public Object getContent() throws IOException { |
|
return delegate.getContent(); |
|
} |
|
|
|
@SuppressWarnings("rawtypes") |
|
public Object getContent(Class[] classes) throws IOException { |
|
return delegate.getContent(classes); |
|
} |
|
|
|
public String toString() { |
|
return delegate.toString(); |
|
} |
|
|
|
public void setDoInput(boolean doinput) { |
|
delegate.setDoInput(doinput); |
|
} |
|
|
|
public boolean getDoInput() { |
|
return delegate.getDoInput(); |
|
} |
|
|
|
public void setDoOutput(boolean dooutput) { |
|
delegate.setDoOutput(dooutput); |
|
} |
|
|
|
public boolean getDoOutput() { |
|
return delegate.getDoOutput(); |
|
} |
|
|
|
public void setAllowUserInteraction(boolean allowuserinteraction) { |
|
delegate.setAllowUserInteraction(allowuserinteraction); |
|
} |
|
|
|
public boolean getAllowUserInteraction() { |
|
return delegate.getAllowUserInteraction(); |
|
} |
|
|
|
public void setUseCaches(boolean usecaches) { |
|
delegate.setUseCaches(usecaches); |
|
} |
|
|
|
public boolean getUseCaches() { |
|
return delegate.getUseCaches(); |
|
} |
|
|
|
public void setIfModifiedSince(long ifmodifiedsince) { |
|
delegate.setIfModifiedSince(ifmodifiedsince); |
|
} |
|
|
|
public long getIfModifiedSince() { |
|
return delegate.getIfModifiedSince(); |
|
} |
|
|
|
public boolean getDefaultUseCaches() { |
|
return delegate.getDefaultUseCaches(); |
|
} |
|
|
|
public void setDefaultUseCaches(boolean defaultusecaches) { |
|
delegate.setDefaultUseCaches(defaultusecaches); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected void finalize() throws Throwable { |
|
delegate.dispose(); |
|
} |
|
|
|
public boolean equals(Object obj) { |
|
return delegate.equals(obj); |
|
} |
|
|
|
public int hashCode() { |
|
return delegate.hashCode(); |
|
} |
|
|
|
public void setConnectTimeout(int timeout) { |
|
delegate.setConnectTimeout(timeout); |
|
} |
|
|
|
public int getConnectTimeout() { |
|
return delegate.getConnectTimeout(); |
|
} |
|
|
|
public void setReadTimeout(int timeout) { |
|
delegate.setReadTimeout(timeout); |
|
} |
|
|
|
public int getReadTimeout() { |
|
return delegate.getReadTimeout(); |
|
} |
|
|
|
public void setFixedLengthStreamingMode (int contentLength) { |
|
delegate.setFixedLengthStreamingMode(contentLength); |
|
} |
|
|
|
public void setFixedLengthStreamingMode(long contentLength) { |
|
delegate.setFixedLengthStreamingMode(contentLength); |
|
} |
|
|
|
public void setChunkedStreamingMode (int chunklen) { |
|
delegate.setChunkedStreamingMode(chunklen); |
|
} |
|
|
|
@Override |
|
public void setAuthenticator(Authenticator auth) { |
|
delegate.setAuthenticator(auth); |
|
} |
|
} |