IdGeneratorHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.idgen.interfaces; import java.rmi.*; import javax.ejb.*; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.2.26.2 $ */ public interface IdGeneratorHome extends EJBHome { // Constants ----------------------------------------------------- public static final String COMP_NAME = "java:comp/env/ejb/IdGenerator"; public static final String JNDI_NAME = "idgen/IdGenerator"; // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public IdGenerator create() throws CreateException, RemoteException; }
IdGeneratorHome.java |