org.domain.rhims.manager
Class DataRetrievalManagerAction

java.lang.Object
  extended by org.domain.rhims.manager.DataRetrievalManagerAction
All Implemented Interfaces:
DataRetrievalManager

@Name(value="dataRetrievalManager")
public class DataRetrievalManagerAction
extends java.lang.Object
implements DataRetrievalManager

This class provides an implementation of the DataRetrievalManager. It maintains a reference to the MedicalDataDAO for extracting data. Its Seam name is "dataRetrievalManager".

Author:
Mitch Williams

Constructor Summary
DataRetrievalManagerAction()
           
 
Method Summary
 java.util.List<MedicalDataValue> getMedicalData(long patientID)
          This method is used to retrieve a List of medical data for a given patientID.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataRetrievalManagerAction

public DataRetrievalManagerAction()
Method Detail

getMedicalData

public java.util.List<MedicalDataValue> getMedicalData(long patientID)
Description copied from interface: DataRetrievalManager
This method is used to retrieve a List of medical data for a given patientID.

Specified by:
getMedicalData in interface DataRetrievalManager
Parameters:
patientID - the ID number of the patient to get data for
Returns:
a List of MedicalDataValues for the patient
See Also:
DataRetrievalManager.getMedicalData(long)