1 25 26 28 package org.objectweb.jonas.jtests.beans.annuaire; 29 30 import java.rmi.RemoteException ; 31 import java.util.Enumeration ; 32 import javax.ejb.CreateException ; 33 import javax.ejb.EJBHome ; 34 import javax.ejb.FinderException ; 35 36 39 public interface PersonneHome extends EJBHome { 40 Personne create(String nom, String numero) throws CreateException , RemoteException ; 41 Personne create(String nom, String numero, boolean t) throws CreateException , RemoteException ; 42 Personne findByPrimaryKey(String pk) throws FinderException , RemoteException ; 43 Personne findByNumero(String numero) throws FinderException , RemoteException ; 44 Personne findByNom(String nom) throws FinderException , RemoteException ; 45 Enumeration findAll() throws FinderException , RemoteException ; 46 } 47 | Popular Tags |