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 representing a patient detail.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class MilitaryService implements Serializable {
private static final long serialVersionUID = -7788619177798333712L;
private Service[] serviceInformation;
private ServiceLocation[] conflictLocations;
private EnvironmentalExposure[] environmentalExposures;
private ServiceLocation powInformation;
private ServiceLocation combatInformation;
private String disabilityRetirement;
private String disabilityDischarge;
private String dentalInjury;
private String dentalExtraction;
private String purpleHeartIndicator;
private String purpleHeartStatus;
/**
* The getter for Service Information.
*
* @return the Service Information
*/
public Service[] getServiceInformation() {
return serviceInformation;
}
/**
* The setter for Service Information.
*
* @param serviceInformation the Service Information to set
*/
public void setServiceInformation(Service[] serviceInformation) {
this.serviceInformation = serviceInformation;
}
/**
* The getter for Conflict Locations.
*
* @return the Conflict Locations
*/
public ServiceLocation[] getConflictLocations() {
return conflictLocations;
}
/**
* The setter for Conflict Locations.
*
* @param conflictLocations the Conflict Locations to set
*/
public void setConflictLocations(ServiceLocation[] conflictLocations) {
this.conflictLocations = conflictLocations;
}
/**
* The getter for Environmental Exposures.
*
* @return the Environmental Exposures
*/
public EnvironmentalExposure[] getEnvironmentalExposures() {
return environmentalExposures;
}
/**
* The setter for Environmental Exposures.
*
* @param environmentalExposures the Environmental Exposures to set
*/
public void setEnvironmentalExposures(EnvironmentalExposure[] environmentalExposures) {
this.environmentalExposures = environmentalExposures;
}
/**
* The getter for pow information.
*
* @return the pow information
*/
public ServiceLocation getPowInformation() {
return powInformation;
}
/**
* The setter for pow information.
*
* @param powInformation the pow information to set
*/
public void setPowInformation(ServiceLocation powInformation) {
this.powInformation = powInformation;
}
/**
* The getter for combat information.
*
* @return the combat information
*/
public ServiceLocation getCombatInformation() {
return combatInformation;
}
/**
* The setter for combat information.
*
* @param combatInformation the combat information to set
*/
public void setCombatInformation(ServiceLocation combatInformation) {
this.combatInformation = combatInformation;
}
/**
* The getter for Disability Retirement.
*
* @return the Disability Retirement
*/
public String getDisabilityRetirement() {
return disabilityRetirement;
}
/**
* The setter for Disability Retirement.
*
* @param disabilityRetirement the Disability Retirement to set
*/
public void setDisabilityRetirement(String disabilityRetirement) {
this.disabilityRetirement = disabilityRetirement;
}
/**
* The getter for Disability Discharge.
*
* @return the Disability Discharge
*/
public String getDisabilityDischarge() {
return disabilityDischarge;
}
/**
* The setter for Disability Discharge.
*
* @param disabilityDischarge the Disability Discharge to set
*/
public void setDisabilityDischarge(String disabilityDischarge) {
this.disabilityDischarge = disabilityDischarge;
}
/**
* Gets the value of Dental Injury status.
*
* @return the Dental Injury status
*/
public String getDentalInjury() {
return dentalInjury;
}
/**
* Sets the value of Dental Injury status.
*
* @param dentalInjury the Dental Injury status to set
*/
public void setDentalInjury(String dentalInjury) {
this.dentalInjury = dentalInjury;
}
/**
* Gets the value of Dental Extraction status.
*
* @return the Dental Extraction status
*/
public String getDentalExtraction() {
return dentalExtraction;
}
/**
* Sets the value of Dental Extraction status.
*
* @param dentalExtraction the Dental Extraction status to set
*/
public void setDentalExtraction(String dentalExtraction) {
this.dentalExtraction = dentalExtraction;
}
/**
* Gets the value of the Purple Heart Indicator.
*
* @return the Purple Heart Indicator
*/
public String getPurpleHeartIndicator() {
return purpleHeartIndicator;
}
/**
* Sets the value of the Purple Heart Indicator.
*
* @param purpleHeartIndicator the Purple Heart Indicator to set
*/
public void setPurpleHeartIndicator(String purpleHeartIndicator) {
this.purpleHeartIndicator = purpleHeartIndicator;
}
/**
* Gets the value of the Purple Heart Status.
*
* @return the Purple Heart Status
*/
public String getPurpleHeartStatus() {
return purpleHeartStatus;
}
/**
* Sets the value of the Purple Heart Status.
*
* @param purpleHeartStatus the Purple Heart Status to set
*/
public void setPurpleHeartStatus(String purpleHeartStatus) {
this.purpleHeartStatus = purpleHeartStatus;
}
}