| IdCounter.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 IdCounter
extends EJBObject
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
// Public --------------------------------------------------------
public long getNextValue()
throws RemoteException;
public String getName()
throws RemoteException;
}
| IdCounter.java |