|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface MedicalDataDAO
The MedicalDataDAO is responsible for interacting with the persistence of the medical data that is received from other parts of the application. It is a component of the Persistance layer of the application. It contains a method to save new medical data, along with a method to retrieve data for a particular patientID.
| Method Summary | |
|---|---|
java.util.List<MedicalDataValue> |
getMedicalData(long patientID)
This method returns a list containing all Medical Data Values for a particular patientID. |
void |
saveMedicalData(MedicalDataValue medicalDataValue)
This method persists a MedicalDataValue entity object. |
| Method Detail |
|---|
void saveMedicalData(MedicalDataValue medicalDataValue)
medicalDataValue - the data object to persistjava.util.List<MedicalDataValue> getMedicalData(long patientID)
patientID - the patientID of the patient's data to retrieve
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||