1 22 package org.jboss.test.hello.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.CreateException ; 26 import javax.ejb.EJBHome ; 27 28 32 public interface HelloHome 33 extends EJBHome  34 { 35 public static final String COMP_NAME = "java:comp/env/ejb/Hello"; 37 public static final String JNDI_NAME = "helloworld/Hello"; 38 39 public Hello create() throws CreateException , RemoteException ; 40 41 } 42 | Popular Tags |