1 22 package org.jboss.test.cts.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 32 public interface CtsCmp 33 extends EJBObject  34 { 35 public void setPersonsName (String personsName) 36 throws RemoteException ; 37 public String getPersonsName () 38 throws RemoteException ; 39 40 public void setPersonsAge(int age) 41 throws RemoteException ; 42 public int getPersonsAge() 43 throws RemoteException ; 44 } 45 | Popular Tags |