org.jboss.ejb3.proxy.container
Interface InvokableContext

All Known Subinterfaces:
StatefulSessionInvokableContext

public interface InvokableContext

InvokableContext Represents any object capable of carrying out generic Invocations as described by a ContainerMethodInvocation descriptor


Method Summary
 org.jboss.aop.joinpoint.InvocationResponse dynamicInvoke(org.jboss.aop.joinpoint.Invocation invocation)
          Invocation point of entry for Remoting
 java.lang.Object invoke(java.lang.Object proxy, org.jboss.ejb3.common.lang.SerializableMethod method, java.lang.Object[] args)
          Invokes the method described by the specified serializable method as called from the specified proxy, using the specified arguments
 

Method Detail

invoke

java.lang.Object invoke(java.lang.Object proxy,
                        org.jboss.ejb3.common.lang.SerializableMethod method,
                        java.lang.Object[] args)
                        throws java.lang.Throwable
Invokes the method described by the specified serializable method as called from the specified proxy, using the specified arguments

Parameters:
proxy - The proxy making the invocation
method - The method to be invoked
args - The arguments to the invocation
Returns:
Throws:
java.lang.Throwable - A possible exception thrown by the invocation

dynamicInvoke

org.jboss.aop.joinpoint.InvocationResponse dynamicInvoke(org.jboss.aop.joinpoint.Invocation invocation)
                                                         throws java.lang.Throwable
Invocation point of entry for Remoting

Parameters:
invocation -
Returns:
Throws:
java.lang.Throwable