Exemplo n.º 1
0
 /**
  * Get Nationality of the PersonalProfile
  *
  * @return Nationality of the PersonalProfile
  * @exception DataObjectException If the object is not found in the database.
  */
 public jobmatch.data.CountryDO getNationality() throws DataObjectException {
   beforeAnyGet(); // business actions/assertions prior to data return
   checkLoad();
   return data.Nationality;
 }
Exemplo n.º 2
0
 /**
  * Get Sex of the PersonalProfile
  *
  * @return Sex of the PersonalProfile
  * @exception DataObjectException If the object is not found in the database.
  */
 public String getSex() throws DataObjectException {
   beforeAnyGet(); // business actions/assertions prior to data return
   checkLoad();
   return data.Sex;
 }
Exemplo n.º 3
0
 /**
  * Get MaxAge of the PersonalProfile
  *
  * @return MaxAge of the PersonalProfile
  * @exception DataObjectException If the object is not found in the database.
  */
 public int getMaxAge() throws DataObjectException {
   beforeAnyGet(); // business actions/assertions prior to data return
   checkLoad();
   return data.MaxAge;
 }