/* -----------------------------------------------------------------
** Copyright 1997-99 IBM Corporation.  All rights reserved.
**
** -----------------------------------------------------------------
*/
package com.ibm.websphere.userprofile.beans;

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();

        }
    }
}