KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > applis > ejb > perfs > Perfs


1 // Perfs.java
2

3 package applis.ejb.perfs;
4
5 import java.rmi.RemoteException;
6 import javax.ejb.EJBObject;
7
8 public interface Perfs extends EJBObject {
9     public String read () throws RemoteException;
10     public void write(String value) throws RemoteException;
11     public String txread () throws RemoteException;
12     public void txwrite(String value) throws RemoteException;
13 }
14
Popular Tags