1 22 package org.jboss.test.entity.interfaces; 23 24 import java.rmi.RemoteException ; 25 26 import javax.ejb.CreateException ; 27 import javax.ejb.EJBHome ; 28 import javax.ejb.FinderException ; 29 30 34 public interface UnsetEntityContextHome extends EJBHome 35 { 36 public UnsetEntityContext create(String name) 37 throws RemoteException , CreateException ; 38 39 public UnsetEntityContext findByPrimaryKey(String name) 40 throws RemoteException , FinderException ; 41 42 public int getSetEntityContextCallCounter() 43 throws RemoteException ; 44 45 public int getUnsetEntityContextCallCounter() 46 throws RemoteException ; 47 48 public void clearSetEntityContextCallCounter() 49 throws RemoteException ; 50 51 public void clearUnsetEntityContextCallCounter() 52 throws RemoteException ; 53 } 54 | Popular Tags |