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;

import java.io.Serializable;
import java.time.OffsetDateTime;

/**
* This class consists of properties for patient's appointment information.
*
* @author Ian Meinert
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class Appointment implements Serializable {

private static final long serialVersionUID = -7788619177798333712L;


private String patientId;
private String appointmentId;
private OffsetDateTime appointmentDate;
private String status;
private Location location;
private String provider;

/**
* The getter for Patient ID.
*
* @return the patientId
*/
public String getPatientId() {
return patientId;
}

/**
* The setter for Patient ID.
*
* @param patientId the patientId to set
*/
public void setPatientId(String patientId) {
this.patientId = patientId;
}

/**
* The getter for Appointment ID.
*
* @return the appointmentId
*/
public String getAppointmentId() {
return appointmentId;
}

/**
* The setter for Appointment ID.
*
* @param appointmentId the appointmentId to set
*/
public void setAppointmentId(String appointmentId) {
this.appointmentId = appointmentId;
}

/**
* The getter for Appointment Date.
*
* @return the Appointment Date
*/
public OffsetDateTime getAppointmentDate() {
return appointmentDate;
}

/**
* The setter for Appointment Date.
*
* @param appointmentDate the Appointment Date to set
*/
public void setAppointmentDate(OffsetDateTime appointmentDate) {
this.appointmentDate = appointmentDate;
}

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

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

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

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

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

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