Class ProxySettings
- java.lang.Object
-
- NeoVisionaries.WebSockets.ProxySettings
-
public class ProxySettings extends java.lang.Object
Proxy settings.
Read included Apache License 2.0:HERE
AllNeoVisionaries.WebSockets.*Code Obtained From:GitHub 'NV' (Takahiko Kawasaki)Public Archive.
If a proxy server's host name is set (= if
getHost()returns a non-null value), a socket factory that creates a socket to communicate with the proxy server is selected based on the settings of thisProxySettingsinstance. The following is the concrete flow to select a socket factory.-
If
isSecure()returnstrue,-
If an
SSLContextinstance has been set bysetSSLContext(SSLContext), the value returned fromSSLContext.getSocketFactory()method of the instance is used. -
Otherwise, if an
SSLSocketFactoryinstance has been set bysetSSLSocketFactory(SSLSocketFactory), the instance is used. -
Otherwise, the value returned from
SSLSocketFactory.getDefault()is used.
-
If an
-
Otherwise (=
isSecure()returnsfalse),-
If a
SocketFactoryinstance has been set bysetSocketFactory(SocketFactory), the instance is used. -
Otherwise, the value returned from
SocketFactory.getDefault()is used.
-
If a
Note that the current implementation supports only Basic Authentication for authentication at the proxy server.
- Since:
- 1.3
- See Also:
WebSocketFactory.getProxySettings()
Hi-Lited Source-Code:- View Here: NeoVisionaries/WebSockets/ProxySettings.java
- Open New Browser-Tab: NeoVisionaries/WebSockets/ProxySettings.java
File Size: 19,730 Bytes Line Count: 809 '\n' Characters Found
-
If
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProxySettingsaddHeader(String name, String value)Add an additional HTTP header passed to the proxy server.Map<String,List<String>>getHeaders()Get additional HTTP headers passed to the proxy server.StringgetHost()Get the host name of the proxy server.StringgetId()Get the ID for authentication at the proxy server.StringgetPassword()Get the password for authentication at the proxy server.intgetPort()Get the port number of the proxy server.String[]getServerNames()Get server names for SNI (Server Name Indication).javax.net.SocketFactorygetSocketFactory()Get the socket factory that has been set bysetSocketFactory(SocketFactory).javax.net.ssl.SSLContextgetSSLContext()Get the SSL context that has been set bysetSSLContext(SSLContext).javax.net.ssl.SSLSocketFactorygetSSLSocketFactory()Get the SSL socket factory that has been set bysetSSLSocketFactory(SSLSocketFactory).WebSocketFactorygetWebSocketFactory()Get the associatedWebSocketFactoryinstance.booleanisSecure()Check whether use of TLS is enabled or disabled.ProxySettingsreset()Reset the proxy settings.ProxySettingssetCredentials(String id, String password)Set credentials for authentication at the proxy server.ProxySettingssetHost(String host)Set the host name of the proxy server.ProxySettingssetId(String id)Set the ID for authentication at the proxy server.ProxySettingssetPassword(String password)Set the password for authentication at the proxy server.ProxySettingssetPort(int port)Set the port number of the proxy server.ProxySettingssetSecure(boolean secure)Enable or disable use of TLS.ProxySettingssetServer(String uri)Set the proxy server by a URI.ProxySettingssetServer(URI uri)Set the proxy server by a URI.ProxySettingssetServer(URL url)Set the proxy server by a URL.ProxySettingssetServerName(String serverName)Set a server name for SNI (Server Name Indication).ProxySettingssetServerNames(String[] serverNames)Set server names for SNI (Server Name Indication).ProxySettingssetSocketFactory(javax.net.SocketFactory factory)Set a socket factory.ProxySettingssetSSLContext(javax.net.ssl.SSLContext context)Set an SSL context to get a socket factory.ProxySettingssetSSLSocketFactory(javax.net.ssl.SSLSocketFactory factory)Set an SSL socket factory.
-
-
-
Method Detail
-
getWebSocketFactory
public WebSocketFactory getWebSocketFactory()
Get the associatedWebSocketFactoryinstance.- Code:
- Exact Method Body:
return mWebSocketFactory;
-
reset
public ProxySettings reset()
Reset the proxy settings. To be concrete, parameter values are set as shown below.Name Value Description Secure falseUse TLS to connect to the proxy server or not. Host nullThe host name of the proxy server. Port -1The port number of the proxy server. ID nullThe ID for authentication at the proxy server. Password nullThe password for authentication at the proxy server. Headers Cleared Additional HTTP headers passed to the proxy server. Server Names nullServer names for SNI (Server Name Indication). - Returns:
thisobject.- Code:
- Exact Method Body:
mSecure = false; mHost = null; mPort = -1; mId = null; mPassword = null; mHeaders.clear(); mServerNames = null; return this;
-
isSecure
public boolean isSecure()
Check whether use of TLS is enabled or disabled.- Returns:
trueif TLS is used in the communication with the proxy server.- Code:
- Exact Method Body:
return mSecure;
-
setSecure
public ProxySettings setSecure(boolean secure)
Enable or disable use of TLS.- Parameters:
secure-trueto use TLS in the communication with the proxy server.- Returns:
thisobject.- Code:
- Exact Method Body:
mSecure = secure; return this;
-
getHost
public java.lang.String getHost()
Get the host name of the proxy server.The default value is
null. If this method returns a non-null value, it is used as the proxy server.- Returns:
- The host name of the proxy server.
- Code:
- Exact Method Body:
return mHost;
-
setHost
public ProxySettings setHost(java.lang.String host)
Set the host name of the proxy server.If a non-null value is set, it is used as the proxy server.
- Parameters:
host- The host name of the proxy server.- Returns:
thisobject.- Code:
- Exact Method Body:
mHost = host; return this;
-
getPort
public int getPort()
Get the port number of the proxy server.The default value is
-1.-1means that the default port number (80for non-secure connections and443for secure connections) should be used.- Returns:
- The port number of the proxy server.
- Code:
- Exact Method Body:
return mPort;
-
setPort
public ProxySettings setPort(int port)
Set the port number of the proxy server.If
-1is set, the default port number (80for non-secure connections and443for secure connections) is used.- Parameters:
port- The port number of the proxy server.- Returns:
thisobject.- Code:
- Exact Method Body:
mPort = port; return this;
-
getId
public java.lang.String getId()
Get the ID for authentication at the proxy server.The default value is
null. If this method returns a non-null value, it is used as the ID for authentication at the proxy server. To be concrete, the value is used to generate the value ofProxy-Authorizationheader.- Returns:
- The ID for authentication at the proxy server.
- Code:
- Exact Method Body:
return mId;
-
setId
public ProxySettings setId(java.lang.String id)
Set the ID for authentication at the proxy server.If a non-null value is set, it is used as the ID for authentication at the proxy server. To be concrete, the value is used to generate the value of
Proxy-Authorizationheader.- Parameters:
id- The ID for authentication at the proxy server.- Returns:
thisobject.- Code:
- Exact Method Body:
mId = id; return this;
-
getPassword
public java.lang.String getPassword()
Get the password for authentication at the proxy server.- Returns:
- The password for authentication at the proxy server.
- Code:
- Exact Method Body:
return mPassword;
-
setPassword
public ProxySettings setPassword(java.lang.String password)
Set the password for authentication at the proxy server.- Parameters:
password- The password for authentication at the proxy server.- Returns:
thisobject.- Code:
- Exact Method Body:
mPassword = password; return this;
-
setCredentials
public ProxySettings setCredentials(java.lang.String id, java.lang.String password)
Set credentials for authentication at the proxy server. This method is an alias ofsetId(id).setPassword(password).- Parameters:
id- The ID.password- The password.- Returns:
thisobject.- Code:
- Exact Method Body:
return setId(id).setPassword(password);
-
setServer
public ProxySettings setServer(java.lang.String uri)
Set the proxy server by a URI. See the description ofsetServer(URI)about how the parameters are updated.- Parameters:
uri- The URI of the proxy server. Ifnullis given, none of the parameters are updated.- Returns:
thisobject.- Throws:
java.lang.IllegalArgumentException- Failed to convert the given string to aURIinstance.- Code:
- Exact Method Body:
if (uri == null) { return this; } return setServer(URI.create(uri));
-
setServer
public ProxySettings setServer(java.net.URL url)
Set the proxy server by a URL. See the description ofsetServer(URI)about how the parameters are updated.- Parameters:
url- The URL of the proxy server. Ifnullis given, none of the parameters are updated.- Returns:
thisobject.- Throws:
java.lang.IllegalArgumentException- Failed to convert the given URL to aURIinstance.- Code:
- Exact Method Body:
if (url == null) { return this; } try { return setServer(url.toURI()); } catch (URISyntaxException e) { throw new IllegalArgumentException(e); }
-
setServer
public ProxySettings setServer(java.net.URI uri)
Set the proxy server by a URI. The parameters are updated as described below.- Secure
If the URI contains the scheme part and its value is either
"http"or"https"(case-insensitive), thesecureparameter is updated tofalseor totrueaccordingly. In other cases, the parameter is not updated.- ID & Password
If the URI contains the userinfo part and the ID embedded in the userinfo part is not an empty string, the
idparameter and thepasswordparameter are updated accordingly. In other cases, the parameters are not updated.- Host
The
hostparameter is always updated by the given URI.- Port
The
portparameter is always updated by the given URI.
- Parameters:
uri- The URI of the proxy server. Ifnullis given, none of the parameters is updated.- Returns:
thisobject.- Code:
- Exact Method Body:
if (uri == null) { return this; } String scheme = uri.getScheme(); String userInfo = uri.getUserInfo(); String host = uri.getHost(); int port = uri.getPort(); return setServer(scheme, userInfo, host, port);
-
getHeaders
public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getHeaders ()
Get additional HTTP headers passed to the proxy server.- Returns:
- Additional HTTP headers passed to the proxy server.
The comparator of the returned map is
String.CASE_INSENSITIVE_ORDER. - Code:
- Exact Method Body:
return mHeaders;
-
addHeader
public ProxySettings addHeader(java.lang.String name, java.lang.String value)
Add an additional HTTP header passed to the proxy server.- Parameters:
name- The name of an HTTP header (case-insensitive). Ifnullor an empty string is given, nothing is added.value- The value of the HTTP header.- Returns:
thisobject.- Code:
- Exact Method Body:
if (name == null || name.length() == 0) { return this; } List<String> list = mHeaders.get(name); if (list == null) { list = new ArrayList<String>(); mHeaders.put(name, list); } list.add(value); return this;
-
getSocketFactory
public javax.net.SocketFactory getSocketFactory()
Get the socket factory that has been set bysetSocketFactory(SocketFactory).- Returns:
- The socket factory.
- Code:
- Exact Method Body:
return mSocketFactorySettings.getSocketFactory();
-
setSocketFactory
public ProxySettings setSocketFactory(javax.net.SocketFactory factory)
Set a socket factory.- Parameters:
factory- A socket factory.- Returns:
thisinstance.- Code:
- Exact Method Body:
mSocketFactorySettings.setSocketFactory(factory); return this;
-
getSSLSocketFactory
public javax.net.ssl.SSLSocketFactory getSSLSocketFactory()
Get the SSL socket factory that has been set bysetSSLSocketFactory(SSLSocketFactory).- Returns:
- The SSL socket factory.
- Code:
- Exact Method Body:
return mSocketFactorySettings.getSSLSocketFactory();
-
setSSLSocketFactory
public ProxySettings setSSLSocketFactory (javax.net.ssl.SSLSocketFactory factory)
Set an SSL socket factory.- Parameters:
factory- An SSL socket factory.- Returns:
thisinstance.- Code:
- Exact Method Body:
mSocketFactorySettings.setSSLSocketFactory(factory); return this;
-
getSSLContext
public javax.net.ssl.SSLContext getSSLContext()
Get the SSL context that has been set bysetSSLContext(SSLContext).- Returns:
- The SSL context.
- Code:
- Exact Method Body:
return mSocketFactorySettings.getSSLContext();
-
setSSLContext
public ProxySettings setSSLContext(javax.net.ssl.SSLContext context)
Set an SSL context to get a socket factory.- Parameters:
context- An SSL context.- Returns:
thisinstance.- Code:
- Exact Method Body:
mSocketFactorySettings.setSSLContext(context); return this;
-
getServerNames
public java.lang.String[] getServerNames()
Get server names for SNI (Server Name Indication).- Returns:
- List of host names.
- Since:
- 2.4
- Code:
- Exact Method Body:
return mServerNames;
-
setServerNames
public ProxySettings setServerNames(java.lang.String[] serverNames)
Set server names for SNI (Server Name Indication). IfsetServerNames(List<SNIServerName>)method ofSSLParametersclass is available in the underlying system, the method is called to set up server names for SNI (Server Name Indication).- Parameters:
serverNames- List of host names.- Returns:
thisobject.- Since:
- 2.4
- Code:
- Exact Method Body:
mServerNames = serverNames; return this;
-
setServerName
public ProxySettings setServerName(java.lang.String serverName)
Set a server name for SNI (Server Name Indication). This method internally creates a String array of size 1 which contains the givenserverNameand callssetServerNames(String[]).- Parameters:
serverName- A host name.- Returns:
thisobject.- Since:
- 2.4
- Code:
- Exact Method Body:
return setServerNames(new String[] { serverName });
-
-