1 22 package org.jboss.test.perf.interfaces; 23 public interface Session extends javax.ejb.EJBObject  24 { 25 26 public void create(int low, int high) 27 throws java.rmi.RemoteException , javax.ejb.CreateException ; 28 29 public void remove(int low, int high) 30 throws java.rmi.RemoteException , javax.ejb.RemoveException ; 31 32 public void read(int id) throws java.rmi.RemoteException ; 33 34 public void read(int low, int high) throws java.rmi.RemoteException ; 35 36 public void write(int id) throws java.rmi.RemoteException ; 37 38 public void write(int low, int high) throws java.rmi.RemoteException ; 39 } 40 | Popular Tags |