1 22 package org.jboss.test.bench.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.CreateException ; 26 import javax.ejb.FinderException ; 27 import javax.ejb.EJBHome ; 28 29 public interface ComplexEntityHome extends EJBHome { 30 31 public ComplexEntity create(boolean aBoolean, int anInt, long aLong, double aDouble, String aString) 32 throws RemoteException , CreateException ; 33 34 public ComplexEntity findByPrimaryKey(AComplexPK aComplexPK) 35 throws RemoteException , FinderException ; 36 } 37 | Popular Tags |