IdCounterHome.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.util.*; import java.rmi.*; import javax.ejb.*; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.3.26.2 $ */ public interface IdCounterHome extends EJBHome { // Constants ----------------------------------------------------- public static final String COMP_NAME = "java:comp/env/ejb/IdCounter"; public static final String JNDI_NAME = "IdCounter"; // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public IdCounter create(String beanName) throws RemoteException, CreateException; public IdCounter findByPrimaryKey(String beanName) throws RemoteException, FinderException; public Collection findAll() throws RemoteException, FinderException; }
IdCounterHome.java |