com.caucho.hessian.client
类 HessianProxy

java.lang.Object
  继承者 com.caucho.hessian.client.HessianProxy
所有已实现的接口:
java.io.Serializable, java.lang.reflect.InvocationHandler

public class HessianProxy
extends java.lang.Object
implements java.lang.reflect.InvocationHandler, java.io.Serializable

Proxy implementation for Hessian clients. Applications will generally use HessianProxyFactory to create proxy clients.

另请参见:
序列化表格

方法摘要
 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.
 java.lang.Object writeReplace()
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

方法详细信息

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.

指定者:
接口 java.lang.reflect.InvocationHandler 中的 invoke
参数:
proxy - the proxy object to invoke
method - the method to call
args - the arguments to the proxy object
抛出:
java.lang.Throwable

writeReplace

public java.lang.Object writeReplace()