Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

package gov.va.med.pbm.ampl.model.patientdemographics;

import java.io.Serializable;

/**
* This class consists of properties for patient's social history.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class SocialHistory implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String maritalStatus;
private String religion;
private String race;
private String raceSource;
private String ethnicity;
private String ethnicitySource;

/**
* The getter for Marital Status.
*
* @return the Marital Status
*/
public String getMaritalStatus() {
return maritalStatus;
}

/**
* The setter for Marital Status.
*
* @param maritalStatus the Marital Status to set
*/
public void setMaritalStatus(String maritalStatus) {
this.maritalStatus = maritalStatus;
}

/**
* The getter for Religious Preference.
*
* @return the Religious Preference
*/
public String getReligion() {
return religion;
}

/**
* The setter for Religious Preference.
*
* @param religion the Religious Preference to set
*/
public void setReligion(String religion) {
this.religion = religion;
}

/**
* The getter for Race.
*
* @return the Race
*/
public String getRace() {
return race;
}

/**
* The setter for race.
*
* @param race the race to set
*/
public void setRace(String race) {
this.race = race;
}

/**
* The getter for Method of Collection for Race.
*
* @return the Method of Collection for Race
*/
public String getRaceSource() {
return raceSource;
}

/**
* The setter for Method of Collection for Race.
*
* @param raceSource the Method of Collection for Race to set
*/
public void setRaceSource(String raceSource) {
this.raceSource = raceSource;
}

/**
* The getter for Ethnicity.
*
* @return the Ethnicity
*/
public String getEthnicity() {
return ethnicity;
}

/**
* The setter for Ethnicity.
*
* @param ethnicity the Ethnicity to set
*/
public void setEthnicity(String ethnicity) {
this.ethnicity = ethnicity;
}

/**
* The getter for Method of Collection for Ethnicity.
*
* @return the Method of Collection for Ethnicity
*/
public String getEthnicitySource() {
return ethnicitySource;
}

/**
* The setter for Method of Collection for Ethnicity.
*
* @param ethnicitySource the Method of Collection for Ethnicity
*/
public void setEthnicitySource(String ethnicitySource) {
this.ethnicitySource = ethnicitySource;
}
}