org.domain.rhims.manager
Interface DataRetrievalManager

All Known Implementing Classes:
DataRetrievalManagerAction

public interface DataRetrievalManager

The DataRetrievalManager is the business/application logic that handles extracting medical data that has been stored by the application. It is a component of the Application layer. Currently, it supports the ability to get a List of the MedicalDataValues for a patient given that patient's ID number. In the future, it will contain other methods, such as getting data over a certain time interval, or for a specific vital sign.

Author:
Mitch Williams

Method Summary
 java.util.List<MedicalDataValue> getMedicalData(long patientID)
          This method is used to retrieve a List of medical data for a given patientID.
 

Method Detail

getMedicalData

java.util.List<MedicalDataValue> getMedicalData(long patientID)
This method is used to retrieve a List of medical data for a given patientID.

Parameters:
patientID - the ID number of the patient to get data for
Returns:
a List of MedicalDataValues for the patient