Package com.caucho.burlap.client
Class BurlapProxy
- java.lang.Object
-
- com.caucho.burlap.client.BurlapProxy
-
- All Implemented Interfaces:
java.lang.reflect.InvocationHandler
public class BurlapProxy extends java.lang.Object implements java.lang.reflect.InvocationHandlerProxy implementation for Burlap clients. Applications will generally use BurlapProxyFactory to create proxy clients.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URLgetURL()Returns the proxy's URL.java.lang.Objectinvoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args)Handles the object invocation.java.lang.StringtoString()
-
-
-
Method Detail
-
getURL
public java.net.URL getURL()
Returns the proxy's URL.
-
invoke
public java.lang.Object invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args) throws java.lang.ThrowableHandles the object invocation.- Specified by:
invokein interfacejava.lang.reflect.InvocationHandler- Parameters:
proxy- the proxy object to invokemethod- the method to callargs- the arguments to the proxy object- Throws:
java.lang.Throwable
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-