KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > ejb > InvocationContext


1 /*
2  * JBoss, the OpenSource EJB server
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package javax.ejb;
8
9 import java.lang.reflect.Method;
10
11 /**
12  * @author <a HREF="mailto:kabir.khan@jboss.org">Kabir Khan</a>
13  * @version $Revision: 1.1.6.1 $
14  */

15 public interface InvocationContext {
16    public Object getBean();
17    public Method getMethod();
18    public Object[] getParameters();
19    public void setParameters(Object[] params);
20    public EJBContext getEJBContext();
21    public java.util.Map getContextData();
22    public Object proceed() throws Exception;
23 }
Popular Tags