1 25 26 28 package org.objectweb.jonas.jtests.beans.annuaire; 29 30 import java.rmi.RemoteException ; 31 import javax.ejb.EJBObject ; 32 33 36 public interface Personne extends EJBObject { 37 public String getNumero() throws RemoteException ; 38 public void setNumero(String s) throws RemoteException ; 39 public void setNom(String s) throws RemoteException ; 40 public String getNom() throws RemoteException ; 41 public boolean isDirty() throws RemoteException ; 42 public void reset() throws RemoteException ; 43 public boolean isModifiedCalled() throws RemoteException ; 44 public boolean ejbStoreCalled() throws RemoteException ; 45 public String getNumeroNTX() throws RemoteException ; 46 public void setNumeroNTX(String s) throws RemoteException ; 47 public int setTimer(int dur, int period) throws RemoteException ; 48 public void cancelTimer(int id) throws RemoteException ; 49 public long getTimeRemaining(int id) throws RemoteException ; 50 public int getTimerCount() throws RemoteException ; 51 } 52 | Popular Tags |