BankHome.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.rmi.*; import javax.ejb.*; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.2.4.1 $ */ public interface BankHome extends EJBHome { // Constants ----------------------------------------------------- public static final String COMP_NAME = "java:comp/env/ejb/Bank"; public static final String JNDI_NAME = "bank-iiop/Bank"; // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public Bank create() throws RemoteException, CreateException; }
BankHome.java |