1 6 package org.jfox.ejb.handler; 7 8 import org.jfox.ejb.connector.EJBInvocation; 9 10 17 18 19 public interface Interceptor extends ContainerPlugin { 20 21 27 void preInvokeHome(final EJBInvocation invocation) throws Exception ; 28 29 35 void preInvokeBean(final EJBInvocation invocation) throws Exception ; 36 37 43 void postInvokeHome(final EJBInvocation invocation) throws Exception ; 44 45 51 void postInvokeBean(final EJBInvocation invocation) throws Exception ; 52 53 } | Popular Tags |