Uses of Class
ice.net.proxy.Proxy

Packages that use Proxy
ice.net   
ice.net.pac   
ice.net.proxy   
 

Uses of Proxy in ice.net
 

Methods in ice.net that return Proxy
 Proxy HttpURLConnection.getProxy()
          Gets the current proxy used.
 

Methods in ice.net with parameters of type Proxy
 void HttpURLConnection.setProxy(Proxy proxy)
          Sets the proxy server used for this connection.
 

Uses of Proxy in ice.net.pac
 

Methods in ice.net.pac that return Proxy
 Proxy[] PacManager.findProxy(String url)
          Deprecated. As of 1.5.0, replaced by PacManager.findProxyForUrl(URL).
 

Uses of Proxy in ice.net.proxy
 

Methods in ice.net.proxy that return Proxy
 Proxy[] ProxyResolver.findProxy(String url)
          Deprecated. As of 1.5, replaced by ProxyResolver.findProxyForUrl(URL).
 Proxy ProxyManager.getProxy(String host, int port)
           
 Proxy ProxyManager.getProxy(String host, int port, String protocol)
           
 Proxy[] ProxyManager.findProxy(String url)
          Deprecated. As of 1.5.0, replaced by ProxyManager.findProxyForUrl(URL).
 Proxy ProxyManager.whatProxy(String host)
          Deprecated. As of 1.6.0, replaced by ProxyManager.getProxy(String, int).
 Proxy ProxyManager.whatProxy(String host, String protocol)
          Deprecated. As of 1.6.0, replaced by ProxyManager.getProxy(String, int, String).
 Proxy ProxyManager.getGlobalProxy()
          Gets global proxy server.
 Proxy ProxyManager.getGlobalProxy(String protocol)
          Gets global proxy server for a specified protocol.
 Proxy[] ProxyManager.getAllGlobalProxies()
           
 Proxy ProxyManager.getProxy(String domain)
          Returns the proxy set for a specific domain.
 Proxy ProxyManager.getProxyForDomain(String domain, String protocol)
          Return the proxy for the specified domain and protocol, or null if none exists.
 Proxy ProxyManager.getProxyForDomain(String domain)
          Returns the http proxy for the specified domain, or null if none exists.
 Proxy[] ProxyManager.getAllProxies()
          Returns an array containing all proxies used.
 

Methods in ice.net.proxy with parameters of type Proxy
 void ProxyManager.setGlobalProxy(Proxy proxy)
          Sets the global proxy server.
 void ProxyManager.setProxyDomain(String domain, Proxy proxy)
          Sets a proxy server for a specific domain.
 void ProxyManager.removeGlobalProxy(Proxy proxyRef)
          Remove the global proxy server that correspond to the specified reference.
 String[] ProxyManager.getDomainsForProxy(Proxy p)
          Will return an array of strings giving all the domains the specified proxy will proxy.
 void ProxyManager.setProxyForDomain(String domain, Proxy proxy)
          Set the proxy for the specified domain and protocol.