com.caucho.hessian.client
Class HessianProxy
java.lang.Object
com.caucho.hessian.client.HessianProxy
- All Implemented Interfaces:
- java.lang.reflect.InvocationHandler
- public class HessianProxy
- extends java.lang.Object
- implements java.lang.reflect.InvocationHandler
Proxy implementation for Hessian clients. Applications will generally
use HessianProxyFactory to create proxy clients.
Method Summary |
java.net.URL |
getURL()
Returns the proxy's URL. |
java.lang.Object |
invoke(java.lang.Object proxy,
java.lang.reflect.Method method,
java.lang.Object[] args)
Handles the object invocation. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_factory
private HessianProxyFactory _factory
_url
private java.net.URL _url
HessianProxy
HessianProxy(HessianProxyFactory factory,
java.net.URL url)
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.Throwable
- Handles the object invocation.
- Specified by:
invoke
in interface java.lang.reflect.InvocationHandler
- Parameters:
proxy
- the proxy object to invokemethod
- the method to callargs
- the arguments to the proxy object
- Throws:
java.lang.Throwable