org.domain.rhims.backing
Class DataEntryBackingBean

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

@Name(value="dataEntryBackingBean")
public class DataEntryBackingBean
extends java.lang.Object

This class is used as a backing bean in the presentation layer for the data entry page (this page will eventually be removed, it is just there now for testing data input). It maintains a reference to the DeviceInputManager for passing data to the application logic layer. Its Seam name is "dataEntryBackingBean"

Author:
Mitch Williams

Constructor Summary
DataEntryBackingBean()
           
 
Method Summary
 DeviceInputManager getDeviceInputManager()
           
 java.lang.String getMedicalData()
           
 java.lang.String getMedicalDataType()
           
 long getPatientID()
           
 java.util.Date getTimeStamp()
           
 void setDeviceInputManager(DeviceInputManager deviceInputManager)
           
 void setMedicalData(java.lang.String medicalData)
           
 void setMedicalDataType(java.lang.String medicalDataType)
           
 void setPatientID(long patientID)
           
 void setTimeStamp(java.util.Date timeStamp)
           
 void submit()
          This method actually sends the data to the DeviceInputManager.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataEntryBackingBean

public DataEntryBackingBean()
Method Detail

submit

public void submit()
This method actually sends the data to the DeviceInputManager.


getPatientID

public long getPatientID()

setPatientID

public void setPatientID(long patientID)

getMedicalDataType

public java.lang.String getMedicalDataType()

setMedicalDataType

public void setMedicalDataType(java.lang.String medicalDataType)

getMedicalData

public java.lang.String getMedicalData()

setMedicalData

public void setMedicalData(java.lang.String medicalData)

getTimeStamp

public java.util.Date getTimeStamp()

setTimeStamp

public void setTimeStamp(java.util.Date timeStamp)

getDeviceInputManager

public DeviceInputManager getDeviceInputManager()

setDeviceInputManager

public void setDeviceInputManager(DeviceInputManager deviceInputManager)