org.domain.rhims.backing
Class DataRetrievalBackingBean

java.lang.Object
  extended by org.domain.rhims.backing.DataRetrievalBackingBean

@Name(value="dataRetrievalBackingBean")
public class DataRetrievalBackingBean
extends java.lang.Object

This class is used as a backing bean in the presentation layer for the data retrieval page. It maintains a reference to the DataRetrievalManager for passing and receiving data from the application logic layer. The medicalDataList contains a List of all the MedicalDataValues for the selected patient. Its Seam name is "dataRetrievalBackingBean"

Author:
Mitch Williams

Constructor Summary
DataRetrievalBackingBean()
           
 
Method Summary
 void getData()
          This method interacts with the DataRetrievalManager to get the list of medical data for the supplied patientID.
 java.util.List<Pulse> getMedicalDataList()
           
 java.lang.String getPatientUsername()
           
 void setMedicalDataList(java.util.List<Pulse> medicalDataList)
           
 void setPatientUsername(java.lang.String patientUsername)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataRetrievalBackingBean

public DataRetrievalBackingBean()
Method Detail

getPatientUsername

public java.lang.String getPatientUsername()

setPatientUsername

public void setPatientUsername(java.lang.String patientUsername)

getData

@Factory(value="medicalDataList")
public void getData()
This method interacts with the DataRetrievalManager to get the list of medical data for the supplied patientID.


setMedicalDataList

public void setMedicalDataList(java.util.List<Pulse> medicalDataList)

getMedicalDataList

public java.util.List<Pulse> getMedicalDataList()