1 22 package org.jboss.ejb3.test.bank; 23 24 import java.rmi.*; 25 import javax.ejb.*; 26 27 32 public interface TellerHome extends EJBHome 33 { 34 public static final String COMP_NAME = "java:comp/env/ejb/Teller"; 36 37 public static final String JNDI_NAME = "bank/Teller"; 38 39 41 43 45 public Teller create() throws RemoteException, CreateException; 47 48 } 49 50 65 | Popular Tags |