1 45 package org.openejb.test.beans; 46 47 import java.rmi.RemoteException ; 48 49 public interface Employee extends javax.ejb.EJBObject { 50 51 public void setFirstName(String firstName) 52 throws RemoteException ; 53 54 public void setLastName(String lastName) 55 throws RemoteException ; 56 57 public String getFirstName( ) 58 throws RemoteException ; 59 60 public String getLastName( ) 61 throws RemoteException ; 62 63 } 64 | Popular Tags |