PublisherCMPHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jmsra.bean; import java.rmi.*; import javax.ejb.*; /** * PublisherCMPHome.java * * * Created: Tue Apr 24 22:39:21 2001 * * @author Peter Antman Tim <peter.antman@tim.se> * @version */ public interface PublisherCMPHome extends EJBHome { public PublisherCMP create(Integer nr) throws RemoteException, CreateException; public PublisherCMP findByPrimaryKey(Integer nr) throws RemoteException, FinderException; } // PublisherCMPHome
PublisherCMPHome.java |