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;
import java.time.OffsetDateTime;
/**
* This class consists of properties representing a patient detail.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class PatientEligibility implements Serializable {
private static final long serialVersionUID = -7788619177798333712L;
private String code;
private String status;
private boolean serviceConnected;
private Double serviceConnectedPercentage;
private String rxPatientStatus;
private OffsetDateTime combatVetEndDate;
private String unemployable;
private String permanentTotalDisabled;
private String currentMeansTestStatus;
private String medCopayExemptionStatus;
/**
* The getter for eligibility code.
*
* @return the eligibility code
*/
public String getCode() {
return code;
}
/**
* The setter for eligibility code.
*
* @param code the eligibility code to set
*/
public void setCode(String code) {
this.code = code;
}
/**
* The getter for eligibility status.
*
* @return the eligibility status
*/
public String getStatus() {
return status;
}
/**
* The setter for eligibility status.
*
* @param status the eligibility status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* The getter for serviceConnected.
*
* @return the serviceConnected
*/
public boolean isServiceConnected() {
return serviceConnected;
}
/**
* The setter for serviceConnected.
*
* @param serviceConnected the serviceConnected to set
*/
public void setServiceConnected(boolean serviceConnected) {
this.serviceConnected = serviceConnected;
}
/**
* The getter for serviceConnectedPercentage.
*
* @return the serviceConnectedPercentage
*/
public Double getServiceConnectedPercentage() {
return serviceConnectedPercentage;
}
/**
* The setter for serviceConnectedPercentage.
*
* @param serviceConnectedPercentage the serviceConnectedPercentage to set
*/
public void setServiceConnectedPercentage(Double serviceConnectedPercentage) {
this.serviceConnectedPercentage = serviceConnectedPercentage;
}
/**
* The getter for RxPatientStatus.
*
* @return the rxPatientStatus
*/
public String getRxPatientStatus() {
return rxPatientStatus;
}
/**
* The setter for RxPatientStatus.
*
* @param rxPatientStatus the patientStatus to set
*/
public void setRxPatientStatus(String rxPatientStatus) {
this.rxPatientStatus = rxPatientStatus;
}
/**
* Gets the value of the Combat Veteran End date/time.
*
* @return the Combat Veteran End date/time
*/
public OffsetDateTime getCombatVetEndDate() {
return combatVetEndDate;
}
/**
* Sets the value of the Combat Veteran End date/time.
*
* @param combatVetEndDate the Combat Veteran End date/time to set
*/
public void setCombatVetEndDate(OffsetDateTime combatVetEndDate) {
this.combatVetEndDate = combatVetEndDate;
}
/**
* Gets the value of Unemployable status.
*
* @return the unemployable status
*/
public String getUnemployable() {
return unemployable;
}
/**
* Sets the value of Unemployable status.
*
* @param unemployable the unemployable status to set
*/
public void setUnemployable(String unemployable) {
this.unemployable = unemployable;
}
/**
* Gets the value of the Permanent Total Disabled status.
*
* @return the Permanent Total Disabled status
*/
public String getPermanentTotalDisabled() {
return permanentTotalDisabled;
}
/**
* Sets the value of the Permanent Total Disabled status.
*
* @param permanentTotalDisabled the Permanent Total Disabled status to set
*/
public void setPermanentTotalDisabled(String permanentTotalDisabled) {
this.permanentTotalDisabled = permanentTotalDisabled;
}
/**
* Gets the value of the Current Means Test Status.
*
* @return the Current Means Test Status
*/
public String getCurrentMeansTestStatus() {
return currentMeansTestStatus;
}
/**
* Sets the value of the Current Means Test Status.
*
* @param currentMeansTestStatus the Current Means Test Status to set
*/
public void setCurrentMeansTestStatus(String currentMeansTestStatus) {
this.currentMeansTestStatus = currentMeansTestStatus;
}
/**
* Gets the value of the Medication Copayment Exemption Status.
*
* @return the Medication Copayment Exemption Status
*/
public String getMedCopayExemptionStatus() {
return medCopayExemptionStatus;
}
/**
* Sets the value of the Medication Copayment Exemption Status.
*
* @param medCopayExemptionStatus the Medication Copayment Exemption Status to set
*/
public void setMedCopayExemptionStatus(String medCopayExemptionStatus) {
this.medCopayExemptionStatus = medCopayExemptionStatus;
}
}