import org.yyy.hr;
public interface EmployeeI extends Java.rmi.Remote {
public String getName()
throws Java.rmi.RemoteException;
public String getLocation ()
throws Java.rmi.RemoteException;
}
public class EmployeeImpl implements EmployeeI {
public String getName(){
// ......
}
public String getLocation (){
// ......
}
}