1 22 package org.jboss.test.testbeancluster.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 import javax.ejb.CreateException ; 27 28 32 public interface SessionToEntity extends EJBObject  33 { 34 public String createEntity() 35 throws CreateException , RemoteException ; 36 public NodeAnswer accessEntity() 37 throws RemoteException ; 38 public int getAccessCount() 39 throws RemoteException ; 40 public NodeAnswer validateAccessCount(int count) 41 throws RemoteException ; 42 } 43 | Popular Tags |