CustomerHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.bankiiop.interfaces; import java.util.*; import java.rmi.*; import javax.ejb.*; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.2.4.1 $ */ public interface CustomerHome extends EJBHome { // Constants ----------------------------------------------------- public static final String COMP_NAME = "java:comp/env/ejb/Customer"; public static final String JNDI_NAME = "bank-iiop/Customer"; // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public Customer create(String id, String name) throws RemoteException, CreateException; public Customer findByPrimaryKey(CustomerPK pk) throws RemoteException, FinderException; public Collection findAll() throws RemoteException, FinderException; }
CustomerHome.java |