com.sun.ejb.containers
Class EJBObjectInvocationHandlerDelegate

java.lang.Object
  extended by com.sun.ejb.containers.EJBObjectInvocationHandlerDelegate
All Implemented Interfaces:
InvocationHandler

public class EJBObjectInvocationHandlerDelegate
extends Object
implements InvocationHandler

This class is used as a "proxy" or adapter between the remote business interface proxy and the EJBObjectInvocationHandler. An instance of this class is created for each remote business interface of a bean. All java.lang.Object methods are handled by this InvocationHandler itself while the business interface methods are delegated to the delegate (which is the EJBObjectInvocaionHandler).

Author:
Kenneth Saks

Method Summary
 Object invoke(Object proxy, Method method, Object[] args)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

invoke

public Object invoke(Object proxy,
                     Method method,
                     Object[] args)
              throws Throwable
Specified by:
invoke in interface InvocationHandler
Throws:
Throwable


Copyright © 2012 GlassFish Community. All Rights Reserved.