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 contact person of the patient.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class ServiceLocation implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;

private String location;
private boolean serviceIndicated;
private OffsetDateTime fromDate;
private OffsetDateTime toDate;

/**
* The getter for location.
*
* @return the location
*/
public String getLocation() {
return location;
}

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

/**
* The getter for service indicated.
*
* @return the service indicated
*/
public boolean isServiceIndicated() {
return serviceIndicated;
}

/**
* The setter for service indicated.
*
* @param serviceIndicated the service indicated to set
*/
public void setServiceIndicated(boolean serviceIndicated) {
this.serviceIndicated = serviceIndicated;
}

/**
* The getter for the from date.
*
* @return the from date
*/
public OffsetDateTime getFromDate() {
return fromDate;
}

/**
* The setter for the from date.
*
* @param fromDate the from date to set
*/
public void setFromDate(OffsetDateTime fromDate) {
this.fromDate = fromDate;
}

/**
* The getter for the to date.
*
* @return the to date
*/
public OffsetDateTime getToDate() {
return toDate;
}

/**
* The setter for the to date.
*
* @param toDate the to date to set
*/
public void setToDate(OffsetDateTime toDate) {
this.toDate = toDate;
}
}