1 23 package com.sun.enterprise.util; 24 25 import java.rmi.Remote ; 26 import java.rmi.RemoteException ; 27 28 37 public interface UniqueValueGeneratorBackend extends Remote { 38 39 String JNDI_NAME = "J2EE_UNIQUE_VALUE_GEN"; 41 42 46 String getGeneratorId() throws RemoteException ; 47 48 51 UniqueValueBlock getNextValueBlock(String context) throws RemoteException ; 52 53 54 } 55 | Popular Tags |