1 22 package org.jboss.test.idgen.interfaces; 23 24 import java.rmi.*; 25 import javax.ejb.*; 26 27 33 public interface IdGeneratorHome 34 extends EJBHome 35 { 36 public static final String COMP_NAME = "java:comp/env/ejb/IdGenerator"; 38 public static final String JNDI_NAME = "idgen/IdGenerator"; 39 40 42 44 46 public IdGenerator create() 48 throws CreateException, RemoteException; 49 50 } 51 | Popular Tags |