Searched defs:Proxy (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DProxy.java31 * A <code>Proxy</code> is an immutable object.
38 public class Proxy { class
69 * <code>Socket s = new Socket(Proxy.NO_PROXY);</code><br>
72 public final static Proxy NO_PROXY = new Proxy();
75 private Proxy() { method in class:Proxy
85 * Use the <code>Proxy.NO_PROXY</code> constant
93 public Proxy(Type type, SocketAddress sa) { method in class:Proxy
121 * Constructs a string representation of this Proxy.
140 * Two instances of <code>Proxy</cod
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCacheValue.java41 Proxy, enum constant in enum:AuthCacheValue.Type
59 * Proxy or Server
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DProxy.java48 * {@code Proxy} provides static methods for creating dynamic proxy
55 * Class proxyClass = Proxy.getProxyClass(
63 * Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(),
93 * <li>Proxy classes are public, final, and not abstract.
96 * of class names that begin with the string {@code "$Proxy"}
99 * <li>A proxy class extends {@code java.lang.reflect.Proxy}.
121 * <li>The {@link Proxy#isProxyClass Proxy.isProxyClass} method will
123 * {@code Proxy.getProxyClass} or the class of an object returned by
124 * {@code Proxy
229 public class Proxy implements java.io.Serializable { class in inherits:java.io.Serializable
264 private Proxy() { method in class:Proxy
274 protected Proxy(InvocationHandler h) { method in class:Proxy
[all...]

Completed in 66 milliseconds