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 AHomeRemote extends DassHome { 36 ARemote create(String id) throws CreateException , RemoteException ; 37 ARemote findByPrimaryKey(String pk) throws FinderException , RemoteException ; 38 } 39 | Popular Tags |