org.domain.rhims.manager
Interface DeviceInputManager
- All Known Implementing Classes:
- DeviceInputManagerAction
public interface DeviceInputManager
The DeviceInputManager is the business/application logic that handles the
medical data that is received by the application. It is a component of the
Application layer.
- Author:
- Mitch Williams
|
Method Summary |
void |
addMedicalData(java.lang.String medicalData,
java.lang.String medicalDataType,
long patientID,
java.util.Date timeStamp)
This method is used to enter new medical data into the application. |
addMedicalData
void addMedicalData(java.lang.String medicalData,
java.lang.String medicalDataType,
long patientID,
java.util.Date timeStamp)
- This method is used to enter new medical data into the application.
- Parameters:
medicalData - the actual data valuemedicalDataType - the physiological parameter that this data value is
for, i.e. pulse or blood pressure.patientID - the unique id number of the patient that this data was
received from.timeStamp - the time at which this data was initially recorded by
the monitoring device.