Home | History | Annotate | Download | only in net

Lines Matching refs:Proxy

28 import java.net.Proxy;
32 * Proxy wrapper class so that we can determine application set
35 public final class ApplicationProxy extends Proxy {
36 private ApplicationProxy(Proxy proxy) {
37 super(proxy.type(), proxy.address());
40 public static ApplicationProxy create(Proxy proxy) {
41 return new ApplicationProxy(proxy);