import com.ibm.servlet.personalization.userprofile.UPBase;
// This is an example of extending the base
// User Profile EJB Remote Interface.
public interface UPBaseChild extends UPBase{
String getCellPhone() throws java.rmi.RemoteException;
void setCellPhone(String number) throws java.rmi.RemoteException;
}