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 for patient health insurance.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class HealthInsurance implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String insuranceType;
private String subscriberId;
private String groupNumber;
private String holder;
private OffsetDateTime effectiveDate;
private OffsetDateTime expiryDate;

/**
* The getter for Insurance Type.
*
* @return the insurance type
*/
public String getInsuranceType() {
return insuranceType;
}

/**
* The setter for Insurance Type.
*
* @param insuranceType the insurance type to set
*/
public void setInsuranceType(String insuranceType) {
this.insuranceType = insuranceType;
}

/**
* The getter for COB Subscriber ID.
*
* @return the Subscriber ID
*/
public String getSubscriberId() {
return subscriberId;
}

/**
* The setter for COB Subscriber ID.
*
* @param subscriberId the Subscriber ID to set
*/
public void setSubscriberId(String subscriberId) {
this.subscriberId = subscriberId;
}

/**
* Gets the value of Group Number.
*
* @return the Group Number
*/
public String getGroupNumber() {
return groupNumber;
}

/**
* Sets the value of Group Number.
*
* @param groupNumber the Group Number to set
*/
public void setGroupNumber(String groupNumber) {
this.groupNumber = groupNumber;
}

/**
* Gets the value of the Holder Name.
*
* @return the Holder Name
*/
public String getHolder() {
return holder;
}

/**
* Sets the value of the Holder Name.
*
* @param holder the Holder Name to set
*/
public void setHolder(String holder) {
this.holder = holder;
}

/**
* Gets the value of the Effective Date.
*
* @return the Effective Date
*/
public OffsetDateTime getEffectiveDate() {
return effectiveDate;
}

/**
* Sets the value of the Effective Date.
*
* @param effectiveDate the Effective Date to set
*/
public void setEffectiveDate(OffsetDateTime effectiveDate) {
this.effectiveDate = effectiveDate;
}

/**
* Gets the value of the Expiry Date.
*
* @return the Expiry Date
*/
public OffsetDateTime getExpiryDate() {
return expiryDate;
}

/**
* Sets the value of the Expiry Date.
*
* @param expiryDate the Expiry Date to set
*/
public void setExpiryDate(OffsetDateTime expiryDate) {
this.expiryDate = expiryDate;
}
}