com.sun.ejb.containers
Class EJBObjectInvocationHandlerDelegate

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

public class EJBObjectInvocationHandlerDelegate
extends java.lang.Object
implements java.lang.reflect.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
 java.lang.Object invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

invoke

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


Copyright © 2012 GlassFish Community. All Rights Reserved.