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
Pulse MedicalDataValues for a patient given that patient's username. In the future,
it will contain other methods, such as getting data over a certain time interval,
or for multiple vital signs.
- Author:
- Mitch Williams
|
Method Summary |
java.util.List<Pulse> |
getMedicalDataPulse(java.lang.String patientUsername)
This method retrieves a List of Pulse medical data for a given patient username |
getMedicalDataPulse
java.util.List<Pulse> getMedicalDataPulse(java.lang.String patientUsername)
- This method retrieves a List of Pulse medical data for a given patient username
- Parameters:
patientUsername - the username of the patient to get data from
- Returns:
- a List of MedicalDataValues for the patient