1 6 7 package org.jfox.ejb.handler; 8 9 import java.util.Iterator ; 10 11 import org.jfox.ejb.Bucket; 12 import org.jfox.ejb.connector.EJBInvocation; 13 14 19 20 public interface Handler { 21 29 Object invokeHome(final Bucket bucket, final EJBInvocation invocation, final Iterator iter) throws Exception ; 30 31 39 Object invokeBean(final Bucket bucket, final EJBInvocation invocation, final Iterator iter) throws Exception ; 40 41 } | Popular Tags |