Package uk.ac.starlink.util
Class ProxySetup
- java.lang.Object
-
- uk.ac.starlink.util.ProxySetup
-
public class ProxySetup extends java.lang.ObjectA singleton class for controlling the configuration of the web proxy system properties. The values are stored as Preferences associated with this class and can be restored to the related System properties "http.proxySet", "http.proxyHost", "http.proxyPort" and nonProxyHosts and saved back again.To enable any stored proxy setup just do:
ProxySetup.getInstance().restore();Sometime during application startup. Note that this will supercede any system properties already set (but only if any Preferences have been defined).- Version:
- $Id$
- Author:
- Peter W. Draper
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProxySetupgetInstance()Get a reference to the only instance of this class.java.lang.StringgetNonProxyHosts()Get the hosts that should not be proxied.java.lang.StringgetProxyHost()Get the proxy host.java.lang.StringgetProxyPort()Get the proxy port.booleanisProxySet()Get if proxy use is enabled.voidrestore()Restore from backing store, updating the system properties.voidsetNonProxyHosts(java.lang.String nohosts)Set the hosts that shouldn't use the proxy.voidsetProxyHost(java.lang.String host)Set the proxy host.voidsetProxyPort(java.lang.String port)Set the proxy port.voidsetProxySet(boolean set)Set if proxy use is enabled.voidstore()Save state of system properties to backing store.
-
-
-
Method Detail
-
getInstance
public static ProxySetup getInstance()
Get a reference to the only instance of this class.
-
isProxySet
public boolean isProxySet()
Get if proxy use is enabled.
-
setProxySet
public void setProxySet(boolean set)
Set if proxy use is enabled.
-
getProxyHost
public java.lang.String getProxyHost()
Get the proxy host.
-
setProxyHost
public void setProxyHost(java.lang.String host)
Set the proxy host.
-
getProxyPort
public java.lang.String getProxyPort()
Get the proxy port.
-
setProxyPort
public void setProxyPort(java.lang.String port)
Set the proxy port.
-
getNonProxyHosts
public java.lang.String getNonProxyHosts()
Get the hosts that should not be proxied.
-
setNonProxyHosts
public void setNonProxyHosts(java.lang.String nohosts)
Set the hosts that shouldn't use the proxy. Note this is a list of names, separated by |, and possibly including a wildcard, e.g. "*.dur.ac.uk|localhost".
-
restore
public void restore()
Restore from backing store, updating the system properties.
-
store
public void store()
Save state of system properties to backing store.
-
-