1 25 26 package org.objectweb.jonas.jtests.beans.relation.dass; 27 28 import javax.ejb.CreateException ; 29 import javax.ejb.FinderException ; 30 import java.rmi.RemoteException ; 31 32 35 public interface P1HomeRemote extends DassHome { 36 P1Remote create(String id, String pf1) throws CreateException , RemoteException ; 37 P1Remote findByPrimaryKey(String pk) throws FinderException , RemoteException ; 38 } 39 | Popular Tags |