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 gov.va.med.pbm.ampl.model.Appointment;
/**
* This class consists of properties for patient's clinic and appointment information.
*
* @author Pavani Mukthipudi
*
* @since 1.0
*/
public class ClinicInformation implements Serializable {
private static final long serialVersionUID = -7788619177798333712L;
private String[] clinicsEnrolledIn;
private Appointment[] futureAppointments;
/**
* The getter for the Clinics Enrolled In.
*
* @return the Clinics Enrolled In
*/
public String[] getClinicsEnrolledIn() {
return clinicsEnrolledIn;
}
/**
* The setter for the Clinics Enrolled In.
*
* @param clinicsEnrolledIn the Clinics Enrolled In to set
*/
public void setClinicsEnrolledIn(String[] clinicsEnrolledIn) {
this.clinicsEnrolledIn = clinicsEnrolledIn;
}
/**
* The getter for Appointments.
*
* @return the Future Appointments
*/
public Appointment[] getFutureAppointments() {
return futureAppointments;
}
/**
* The setter for Appointments.
*
* @param futureAppointments the Future Appointments to set
*/
public void setFutureAppointments(Appointment[] futureAppointments) {
this.futureAppointments = futureAppointments;
}
}