1 package org.objectweb.jonas.jtests.beans.cluster; 2 3 import java.lang.String ; 4 import java.rmi.RemoteException ; 5 import java.util.Collection ; 6 import javax.ejb.CreateException ; 7 import javax.ejb.EJBHome ; 8 import javax.ejb.FinderException ; 9 10 public interface IdentityHome extends EJBHome { 11 Identity create(String n, int i) throws CreateException , RemoteException ; 12 Identity findByPrimaryKey(String pk) throws FinderException , RemoteException ; 13 Collection findByNumber(int number) throws FinderException , RemoteException ; 14 Collection findAll() throws FinderException , RemoteException ; 15 } 16 | Popular Tags |