1 25 26 28 29 package org.objectweb.jonas.jtests.beans.inherit; 30 31 import java.rmi.RemoteException ; 32 import javax.ejb.CreateException ; 33 import javax.ejb.EJBHome ; 34 import javax.ejb.FinderException ; 35 36 37 public interface PersonHome extends EJBHome { 38 39 public Person create(int id, String name) throws RemoteException , CreateException ; 40 41 public Person findByPrimaryKey(IdPK pk) throws RemoteException , FinderException ; 42 43 public String getValue(int i) throws RemoteException ; 45 46 } 47 | Popular Tags |