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 health benefits.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class HealthBenefits implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String[] plans;
private HealthInsurance[] insurance;

/**
* The getter for Health Plans.
*
* @return the Plan Information
*/
public String[] getPlans() {
return plans;
}

/**
* The setter for Health Plans.
*
* @param plans the Plan Information to set
*/
public void setPlans(String[] plans) {
this.plans = plans;
}

/**
* The getter for Health Insurance.
*
* @return the Health Insurance
*/
public HealthInsurance[] getInsurance() {
return insurance;
}

/**
* The setter for Health Insurance.
*
* @param insurance the Health Insurance to set
*/
public void setInsurance(HealthInsurance[] insurance) {
this.insurance = insurance;
}
}