1 25 26 28 package org.objectweb.jonas.jtests.beans.fannuaire; 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 } 48 | Popular Tags |