org.kuali.rice.kim.impl.identity.personal
Class EntityBioDemographicsBo

java.lang.Object
  extended by org.kuali.rice.krad.bo.BusinessObjectBase
      extended by org.kuali.rice.krad.bo.PersistableBusinessObjectBase
          extended by org.kuali.rice.kim.impl.identity.personal.EntityBioDemographicsBo
All Implemented Interfaces:
Serializable, org.apache.ojb.broker.PersistenceBrokerAware, GloballyUnique, Versioned, ModelObjectBasic, EntityBioDemographicsContract, BusinessObject, PersistableBusinessObject

@Entity
public class EntityBioDemographicsBo
extends PersistableBusinessObjectBase
implements EntityBioDemographicsContract

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.kuali.rice.krad.bo.PersistableBusinessObjectBase
extension, newCollectionRecord, objectId, versionNumber
 
Fields inherited from interface org.kuali.rice.kim.api.identity.personal.EntityBioDemographicsContract
BIRTH_DATE_FORMAT, DECEASED_DATE_FORMAT
 
Constructor Summary
EntityBioDemographicsBo()
           
 
Method Summary
static EntityBioDemographicsBo from(EntityBioDemographics immutable)
          Creates a EntityBioDemographicsBo business object from an immutable representation of a EntityBioDemographics.
 Integer getAge()
          Gets this EntityBioDemographicsContract's current age based on birth date if present.
 String getBirthCity()
          Gets this EntityBioDemographicsContract's city of birth.
 String getBirthCityUnmasked()
          Gets this EntityBioDemographicsContract's unmasked city of birth.
 String getBirthCountry()
          Gets this EntityBioDemographicsContract's country of birth code.
 String getBirthCountryUnmasked()
          Gets this EntityBioDemographicsContract's unmasked country of birth code.
 String getBirthDate()
          Gets this EntityBioDemographicsContract's birth date.
 String getBirthDateUnmasked()
          Gets this EntityBioDemographicsContract's unmasked birth date.
 Date getBirthDateValue()
           
 String getBirthStateProvinceCode()
          Gets this EntityBioDemographicsContract's birth state or extra-state jurisdiction code.
 String getBirthStateProvinceCodeUnmasked()
          Gets this EntityBioDemographicsContract's unmasked birth state or extra-state jurisdiction code.
 String getDeceasedDate()
          Gets this EntityBioDemographicsContract's deceased date.
 Date getDeceasedDateValue()
           
 List<EntityDisability> getDisabilities()
          Get the EntityBioDemographicsContract's disabilities
 String getEntityId()
          Gets this EntityBioDemographicsContract's identity id.
 String getGenderChangeCode()
          Get the EntityBioDemographicsContract's gender change code Corresponds to PESC GenderChangeCode
 String getGenderChangeCodeUnmasked()
          Get the EntityBioDemographicsContract's gender change code Corresponds to PESC GenderChangeCode
 String getGenderCode()
          Gets this EntityBioDemographicsContract's gender code.
 String getGenderCodeUnmasked()
          Gets this EntityBioDemographicsContract's unmasked gender code.
 String getGeographicOrigin()
          Gets this EntityBioDemographicsContract's geographic origin.
 String getGeographicOriginUnmasked()
          Gets this EntityBioDemographicsContract's unmasked geographic origin.
 String getMaritalStatusCode()
          Gets this EntityBioDemographicsContract's marital status code.
 String getMaritalStatusCodeUnmasked()
          Gets this EntityBioDemographicsContract's unmasked martial status code.
 List<EntityMilitary> getMilitaryRecords()
          Returns if the EntityBioDemographicsContract's entity is disabled.
 String getNoteMessage()
          Get the note associated with this EntityBioDemographicsContract Corresponds to PESC NoteMessage
 String getPrimaryLanguageCode()
          Gets this EntityBioDemographicsContract's primary language code.
 String getPrimaryLanguageCodeUnmasked()
          Gets this EntityBioDemographicsContract's unmasked primary language code.
 String getSecondaryLanguageCode()
          Gets this EntityBioDemographicsContract's secondary language code.
 String getSecondaryLanguageCodeUnmasked()
          Gets this EntityBioDemographicsContract's unmasked secondary language code.
 boolean isDisabled()
          Returns an indicator that signifies if the EntityBioDemographicsContract's entity is disabled.
 boolean isSuppressPersonal()
          Returns a boolean value that determines if personal fields should be suppressed.
 boolean isVeteran()
          Returns an indicator that signifies if the EntityBioDemographicsContract's entity is a veteran.
 void setBirthCity(String birthCity)
           
 void setBirthCountry(String birthCountry)
           
 void setBirthDateValue(Date birthDateValue)
           
 void setBirthStateProvinceCode(String birthStateProvinceCode)
           
 void setDeceasedDateValue(Date deceasedDateValue)
           
 void setDisabilities(List<EntityDisability> disabilities)
           
 void setEntityId(String entityId)
           
 void setGenderChangeCode(String genderChangeCode)
           
 void setGenderCode(String genderCode)
           
 void setGeographicOrigin(String geographicOrigin)
           
 void setMaritalStatusCode(String maritalStatusCode)
           
 void setMilitaryRecords(List<EntityMilitary> militaryRecords)
           
 void setNoteMessage(String noteMessage)
           
 void setPrimaryLanguageCode(String primaryLanguageCode)
           
 void setSecondaryLanguageCode(String secondaryLanguageCode)
           
 void setSuppressPersonal(boolean suppressPersonal)
           
static EntityBioDemographics to(EntityBioDemographicsBo bo)
           
 
Methods inherited from class org.kuali.rice.krad.bo.PersistableBusinessObjectBase
afterDelete, afterInsert, afterLookup, afterUpdate, beforeDelete, beforeInsert, beforeUpdate, buildListOfDeletionAwareLists, getExtension, getLegacyDataAdapter, getObjectId, getPersistenceStructureService, getVersionNumber, isNewCollectionRecord, linkEditableUserFields, postLoad, postPersist, postRemove, postUpdate, prePersist, preRemove, preUpdate, refresh, refreshNonUpdateableReferences, refreshReferenceObject, setExtension, setNewCollectionRecord, setObjectId, setVersionNumber
 
Methods inherited from class org.kuali.rice.krad.bo.BusinessObjectBase
toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.kuali.rice.core.api.mo.common.Versioned
getVersionNumber
 
Methods inherited from interface org.kuali.rice.core.api.mo.common.GloballyUnique
getObjectId
 
Methods inherited from interface org.kuali.rice.core.api.mo.ModelObjectBasic
toString
 

Constructor Detail

EntityBioDemographicsBo

public EntityBioDemographicsBo()
Method Detail

to

public static EntityBioDemographics to(EntityBioDemographicsBo bo)

from

public static EntityBioDemographicsBo from(EntityBioDemographics immutable)
Creates a EntityBioDemographicsBo business object from an immutable representation of a EntityBioDemographics.

Parameters:
immutable - an immutable EntityBioDemographics
Returns:
a EntityBioDemographicsBo

getBirthDate

public String getBirthDate()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's birth date.

Specified by:
getBirthDate in interface EntityBioDemographicsContract
Returns:
the birth date for this EntityBioDemographicsContract, or null if none has been assigned.

getAge

public Integer getAge()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's current age based on birth date if present. Age calculation uses deceased date if present.

Specified by:
getAge in interface EntityBioDemographicsContract
Returns:
the calculated age for this EntityBioDemographicsContract, or null if EntityBioDemographicsContract.getBirthDate() is unpresent, suppressed, or there is a calculation error.

getDeceasedDate

public String getDeceasedDate()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's deceased date.

Specified by:
getDeceasedDate in interface EntityBioDemographicsContract
Returns:
the deceased date for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthDateUnmasked

public String getBirthDateUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked birth date.

Specified by:
getBirthDateUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked birth date for this EntityBioDemographicsContract, or null if none has been assigned.

isSuppressPersonal

public boolean isSuppressPersonal()
Description copied from interface: EntityBioDemographicsContract
Returns a boolean value that determines if personal fields should be suppressed.

Specified by:
isSuppressPersonal in interface EntityBioDemographicsContract
Returns:
boolean value that determines if personal fields should be suppressed.

getGenderCode

public String getGenderCode()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's gender code.

Specified by:
getGenderCode in interface EntityBioDemographicsContract
Returns:
the gender code for this EntityBioDemographicsContract, or null if none has been assigned.

getGenderChangeCode

public String getGenderChangeCode()
Description copied from interface: EntityBioDemographicsContract
Get the EntityBioDemographicsContract's gender change code Corresponds to PESC GenderChangeCode

Specified by:
getGenderChangeCode in interface EntityBioDemographicsContract
Returns:
the gender change code or null if no change

getMaritalStatusCode

public String getMaritalStatusCode()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's marital status code.

Specified by:
getMaritalStatusCode in interface EntityBioDemographicsContract
Returns:
the marital status code for this EntityBioDemographicsContract, or null if none has been assigned.

getPrimaryLanguageCode

public String getPrimaryLanguageCode()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's primary language code.

Specified by:
getPrimaryLanguageCode in interface EntityBioDemographicsContract
Returns:
the primary language code for this EntityBioDemographicsContract, or null if none has been assigned.

getSecondaryLanguageCode

public String getSecondaryLanguageCode()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's secondary language code.

Specified by:
getSecondaryLanguageCode in interface EntityBioDemographicsContract
Returns:
the secondary language code for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthCountry

public String getBirthCountry()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's country of birth code. Corresponds to PESC BirthCountry.

Specified by:
getBirthCountry in interface EntityBioDemographicsContract
Returns:
the country of birth code for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthStateProvinceCode

public String getBirthStateProvinceCode()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's birth state or extra-state jurisdiction code. Corresponds to PESC BirthStateProvinceCode.

Specified by:
getBirthStateProvinceCode in interface EntityBioDemographicsContract
Returns:
the birth state code for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthCity

public String getBirthCity()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's city of birth. Corresponds to PESC BirthCity.

Specified by:
getBirthCity in interface EntityBioDemographicsContract
Returns:
the city of birth for this EntityBioDemographicsContract, or null if none has been assigned.

getGeographicOrigin

public String getGeographicOrigin()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's geographic origin.

Specified by:
getGeographicOrigin in interface EntityBioDemographicsContract
Returns:
the geographic origin for this EntityBioDemographicsContract, or null if none has been assigned.

getGenderCodeUnmasked

public String getGenderCodeUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked gender code.

Specified by:
getGenderCodeUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked gender code for this EntityBioDemographicsContract, or null if none has been assigned.

getGenderChangeCodeUnmasked

public String getGenderChangeCodeUnmasked()
Description copied from interface: EntityBioDemographicsContract
Get the EntityBioDemographicsContract's gender change code Corresponds to PESC GenderChangeCode

Specified by:
getGenderChangeCodeUnmasked in interface EntityBioDemographicsContract
Returns:
the gender change code or null if no change

getMaritalStatusCodeUnmasked

public String getMaritalStatusCodeUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked martial status code.

Specified by:
getMaritalStatusCodeUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked martial status code for this EntityBioDemographicsContract, or null if none has been assigned.

getPrimaryLanguageCodeUnmasked

public String getPrimaryLanguageCodeUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked primary language code.

Specified by:
getPrimaryLanguageCodeUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked primary language code for this EntityBioDemographicsContract, or null if none has been assigned.

getSecondaryLanguageCodeUnmasked

public String getSecondaryLanguageCodeUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked secondary language code.

Specified by:
getSecondaryLanguageCodeUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked secondary language code for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthCountryUnmasked

public String getBirthCountryUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked country of birth code.

Specified by:
getBirthCountryUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked country of birth code for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthStateProvinceCodeUnmasked

public String getBirthStateProvinceCodeUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked birth state or extra-state jurisdiction code. Corresponds to PESC BirthStateProvinceCode.

Specified by:
getBirthStateProvinceCodeUnmasked in interface EntityBioDemographicsContract
Returns:
the unmaksed birth state code for this EntityBioDemographicsContract, or null if none has been assigned.

getBirthCityUnmasked

public String getBirthCityUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked city of birth. Corresponds to PESC BirthCity.

Specified by:
getBirthCityUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked city of birth for this EntityBioDemographicsContract, or null if none has been assigned.

getGeographicOriginUnmasked

public String getGeographicOriginUnmasked()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's unmasked geographic origin.

Specified by:
getGeographicOriginUnmasked in interface EntityBioDemographicsContract
Returns:
the unmasked geographic origin for this EntityBioDemographicsContract, or null if none has been assigned.

isVeteran

public boolean isVeteran()
Description copied from interface: EntityBioDemographicsContract
Returns an indicator that signifies if the EntityBioDemographicsContract's entity is a veteran. This value is determined by the contents of the EntityBioDemographicsContract's military values

Specified by:
isVeteran in interface EntityBioDemographicsContract

isDisabled

public boolean isDisabled()
Description copied from interface: EntityBioDemographicsContract
Returns an indicator that signifies if the EntityBioDemographicsContract's entity is disabled. This value is determined by the contents of the EntityBioDemographicsContract's disabilities values

Specified by:
isDisabled in interface EntityBioDemographicsContract

getEntityId

public String getEntityId()
Description copied from interface: EntityBioDemographicsContract
Gets this EntityBioDemographicsContract's identity id.

Specified by:
getEntityId in interface EntityBioDemographicsContract
Returns:
the identity id for this EntityBioDemographicsContract, or null if none has been assigned.

setEntityId

public void setEntityId(String entityId)

getBirthDateValue

public Date getBirthDateValue()

setBirthDateValue

public void setBirthDateValue(Date birthDateValue)

setGenderCode

public void setGenderCode(String genderCode)

setGenderChangeCode

public void setGenderChangeCode(String genderChangeCode)

getDeceasedDateValue

public Date getDeceasedDateValue()

setDeceasedDateValue

public void setDeceasedDateValue(Date deceasedDateValue)

setMaritalStatusCode

public void setMaritalStatusCode(String maritalStatusCode)

setPrimaryLanguageCode

public void setPrimaryLanguageCode(String primaryLanguageCode)

setSecondaryLanguageCode

public void setSecondaryLanguageCode(String secondaryLanguageCode)

setBirthCountry

public void setBirthCountry(String birthCountry)

setBirthStateProvinceCode

public void setBirthStateProvinceCode(String birthStateProvinceCode)

setBirthCity

public void setBirthCity(String birthCity)

setGeographicOrigin

public void setGeographicOrigin(String geographicOrigin)

getNoteMessage

public String getNoteMessage()
Description copied from interface: EntityBioDemographicsContract
Get the note associated with this EntityBioDemographicsContract Corresponds to PESC NoteMessage

Specified by:
getNoteMessage in interface EntityBioDemographicsContract
Returns:
the message associated with this EntityName

setNoteMessage

public void setNoteMessage(String noteMessage)

getMilitaryRecords

public List<EntityMilitary> getMilitaryRecords()
Description copied from interface: EntityBioDemographicsContract
Returns if the EntityBioDemographicsContract's entity is disabled. This value is determined by the contents of the EntityBioDemographicsContract's disabilities values

Specified by:
getMilitaryRecords in interface EntityBioDemographicsContract

setMilitaryRecords

public void setMilitaryRecords(List<EntityMilitary> militaryRecords)

getDisabilities

public List<EntityDisability> getDisabilities()
Description copied from interface: EntityBioDemographicsContract
Get the EntityBioDemographicsContract's disabilities

Specified by:
getDisabilities in interface EntityBioDemographicsContract

setDisabilities

public void setDisabilities(List<EntityDisability> disabilities)

setSuppressPersonal

public void setSuppressPersonal(boolean suppressPersonal)


Copyright © 2005-2013 The Kuali Foundation. All Rights Reserved.