/* * Copyright (c) 2014. The Trustees of Indiana University. * * This version of the code is licensed under the MPL 2.0 Open Source license with additional * healthcare disclaimer. If the user is an entity intending to commercialize any application * that uses this code in a for-profit venture, please contact the copyright holder. */ package com.muzima.model; import com.muzima.api.model.Patient; import java.util.Date; public abstract class FormWithData extends BaseForm { private String formDataUuid; private Date lastModifiedDate; private Patient patient; private Date encounterDate; public Date getLastModifiedDate() { return lastModifiedDate; } public void setLastModifiedDate(Date lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } public String getFormDataUuid() { return formDataUuid; } public void setFormDataUuid(String formDataUuid) { this.formDataUuid = formDataUuid; } public Patient getPatient() { return patient; } public void setPatient(Patient patient) { this.patient = patient; } public Date getEncounterDate() { return encounterDate; } public void setEncounterDate(Date encounterDate) { this.encounterDate = encounterDate; } }