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