IdGenerator.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.*; import javax.naming.*; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.1.32.2 $ */ public interface IdGenerator extends EJBObject { // Constants ----------------------------------------------------- // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public long getNewId(String beanName) throws RemoteException; }
IdGenerator.java |