List of usage examples for java.net Proxy subclass-usage
From source file bad.robot.http.configuration.SystemPropertyProxy.java
public class SystemPropertyProxy extends Proxy { private static final String proxyUrl = "http.proxyHost"; private static final String port = "http.proxyPort"; private static final String user = "http.proxyUser"; private static final String password = "http.proxyPassword";
From source file net.sourceforge.atunes.kernel.modules.proxy.Proxy.java
public class Proxy extends java.net.Proxy implements Serializable { private static final long serialVersionUID = 7495084217081194366L; private String url; private int port; private String user;
From source file ext.services.network.Proxy.java
/** * . */ public class Proxy extends java.net.Proxy { /** Generated serialVersionUID. */ private static final long serialVersionUID = 7495084217081194366L;
From source file com.caris.oscarexchange4j.proxy.PreviewCoverage.java
/**
* This class is a proxy class for real time get coverage requests extracting
* the image and returning it in the output stream.
*
* @author tcoburn
*
From source file org.sonar.api.utils.HttpDownloaderTest.java
class FakeProxy extends Proxy { public FakeProxy() { super(Type.HTTP, new InetSocketAddress("http://proxy_url", 4040)); } }