1 22 package org.jboss.test.session.interfaces; 23 24 import java.rmi.RemoteException ; 25 26 import javax.ejb.EJBObject ; 27 28 32 public interface CounterSession extends EJBObject  33 { 34 public int getCreateCounter() throws RemoteException ; 35 public int getRemoveCounter() throws RemoteException ; 36 public void clearCounters() throws RemoteException ; 37 } 38 39 | Popular Tags |