/* -----------------------------------------------------------------
** Copyright 1997-99 IBM Corporation.  All rights reserved.
**
** -----------------------------------------------------------------
*/

import java.net.*;
import java.sql.*;
import java.util.*;
import java.io.*;

import com.ibm.servlet.personalization.userprofile.*;



public class UserProfileExtension extends UserProfile {

    public String getCellPhone() {

        //Get the EJBObject Reference

      try {

          UPBaseChild  upChild= (UPBaseChild) getBeanReference();
          return upChild.getCellPhone();

	} catch(Exception e) {

		e.printStackTrace();

      }
    }


    public void setCellPhone(String value) {

        //Get the EJBObject Reference

      try {

          UPBaseChild upChild= (UPBaseChild)getBeanReference();
          return upChild.setCellPhone(value);

	} catch(Exception e) {

		e.printStackTrace();

      }
    }
}