import com.ibm.servlet.personalization.userprofile.UserProfile;
//DataWrapper
public class UserProfileEJBExtension extends UserProfile {
public String getCellPhone() {
//Get the EJBObject Reference
try {
UPBaseChild
upChild= (UPBaseChild)getBeanReference();
return upChild.getCellPhone();
} catch(Exception e) {
e.printStackTrace();
return null;
}
}
public void setCellPhone(String value) {
//Get the EJBObject Reference
try {
UPBaseChild
upChild= (UPBaseChild)getBeanReference();
upChild.setCellPhone(value);
} catch(Exception e) {
e.printStackTrace();
}
}
}