Methods Summary |
---|
public void | addRequestProperty(java.lang.String field, java.lang.String newValue)
httpsEngine.addRequestProperty(field, newValue);
|
public void | connect()
httpsEngine.connect();
|
public void | disconnect()
httpsEngine.disconnect();
|
public boolean | getAllowUserInteraction()
return httpsEngine.getAllowUserInteraction();
|
public java.lang.String | getCipherSuite()
if (sslSocket == null) {
throw new IllegalStateException(Messages.getString("luni.00")); //$NON-NLS-1$
}
return sslSocket.getSession().getCipherSuite();
|
public int | getConnectTimeout()
return httpsEngine.getConnectTimeout();
|
public java.lang.Object | getContent()
return httpsEngine.getContent();
|
public java.lang.Object | getContent(java.lang.Class[] types)
return httpsEngine.getContent(types);
|
public java.lang.String | getContentEncoding()
return httpsEngine.getContentEncoding();
|
public int | getContentLength()
return httpsEngine.getContentLength();
|
public java.lang.String | getContentType()
return httpsEngine.getContentType();
|
public long | getDate()
return httpsEngine.getDate();
|
public boolean | getDefaultUseCaches()
return httpsEngine.getDefaultUseCaches();
|
public boolean | getDoInput()
return httpsEngine.getDoInput();
|
public boolean | getDoOutput()
return httpsEngine.getDoOutput();
|
public java.io.InputStream | getErrorStream()
return httpsEngine.getErrorStream();
|
public long | getExpiration()
return httpsEngine.getExpiration();
|
public java.lang.String | getHeaderField(int pos)
return httpsEngine.getHeaderField(pos);
|
public java.lang.String | getHeaderField(java.lang.String key)
return httpsEngine.getHeaderField(key);
|
public long | getHeaderFieldDate(java.lang.String field, long defaultValue)
return httpsEngine.getHeaderFieldDate(field, defaultValue);
|
public int | getHeaderFieldInt(java.lang.String field, int defaultValue)
return httpsEngine.getHeaderFieldInt(field, defaultValue);
|
public java.lang.String | getHeaderFieldKey(int posn)
return httpsEngine.getHeaderFieldKey(posn);
|
public java.util.Map | getHeaderFields()
return httpsEngine.getHeaderFields();
|
public long | getIfModifiedSince()
return httpsEngine.getIfModifiedSince();
|
public java.io.InputStream | getInputStream()
return httpsEngine.getInputStream();
|
public boolean | getInstanceFollowRedirects()
return httpsEngine.getInstanceFollowRedirects();
|
public long | getLastModified()
return httpsEngine.getLastModified();
|
public java.security.cert.Certificate[] | getLocalCertificates()
if (sslSocket == null) {
throw new IllegalStateException(Messages.getString("luni.00")); //$NON-NLS-1$
}
return sslSocket.getSession().getLocalCertificates();
|
public java.security.Principal | getLocalPrincipal()
if (sslSocket == null) {
throw new IllegalStateException(Messages.getString("luni.00")); //$NON-NLS-1$
}
return sslSocket.getSession().getLocalPrincipal();
|
public java.io.OutputStream | getOutputStream()
return httpsEngine.getOutputStream();
|
public java.security.Principal | getPeerPrincipal()
if (sslSocket == null) {
throw new IllegalStateException(Messages.getString("luni.00")); //$NON-NLS-1$
}
return sslSocket.getSession().getPeerPrincipal();
|
public java.security.Permission | getPermission()
return httpsEngine.getPermission();
|
public int | getReadTimeout()
return httpsEngine.getReadTimeout();
|
public java.lang.String | getRequestMethod()
return httpsEngine.getRequestMethod();
|
public java.util.Map | getRequestProperties()
return httpsEngine.getRequestProperties();
|
public java.lang.String | getRequestProperty(java.lang.String field)
return httpsEngine.getRequestProperty(field);
|
public int | getResponseCode()
return httpsEngine.getResponseCode();
|
public java.lang.String | getResponseMessage()
return httpsEngine.getResponseMessage();
|
public java.security.cert.Certificate[] | getServerCertificates()
if (sslSocket == null) {
throw new IllegalStateException(Messages.getString("luni.00")); //$NON-NLS-1$
}
return sslSocket.getSession().getPeerCertificates();
|
public java.net.URL | getURL()
return httpsEngine.getURL();
|
public boolean | getUseCaches()
return httpsEngine.getUseCaches();
|
public void | setAllowUserInteraction(boolean newValue)
httpsEngine.setAllowUserInteraction(newValue);
|
public void | setConnectTimeout(int timeout)
httpsEngine.setConnectTimeout(timeout);
|
public void | setDefaultUseCaches(boolean newValue)
httpsEngine.setDefaultUseCaches(newValue);
|
public void | setDoInput(boolean newValue)
httpsEngine.setDoInput(newValue);
|
public void | setDoOutput(boolean newValue)
httpsEngine.setDoOutput(newValue);
|
public void | setIfModifiedSince(long newValue)
httpsEngine.setIfModifiedSince(newValue);
|
public void | setInstanceFollowRedirects(boolean followRedirects)
httpsEngine.setInstanceFollowRedirects(followRedirects);
|
public void | setReadTimeout(int timeout)
httpsEngine.setReadTimeout(timeout);
|
public void | setRequestMethod(java.lang.String method)
httpsEngine.setRequestMethod(method);
|
public void | setRequestProperty(java.lang.String field, java.lang.String newValue)
httpsEngine.setRequestProperty(field, newValue);
|
public void | setUseCaches(boolean newValue)
httpsEngine.setUseCaches(newValue);
|
public java.lang.String | toString()
return httpsEngine.toString();
|
public boolean | usingProxy()
return httpsEngine.usingProxy();
|