01: package org.objectweb.jonas.jtests.beans.cluster;
02:
03: import java.lang.String;
04: import java.rmi.RemoteException;
05: import javax.ejb.EJBObject;
06:
07: public interface Identity extends EJBObject {
08: public String getName() throws RemoteException; // PK
09:
10: public int getNumber() throws RemoteException;
11:
12: public void setNumber(int val) throws RemoteException;
13: }
|