A B C D F G H I L M N P R S T U V

G

GeneralException - Exception in idi.diplom.linda.exceptions
Exception thrown when an error occurs interacting with the database layer
GeneralException() - Constructor for exception idi.diplom.linda.exceptions.GeneralException
Empty constructor
GeneralException(String) - Constructor for exception idi.diplom.linda.exceptions.GeneralException
Constructor that sets the message
GeneralException(Throwable) - Constructor for exception idi.diplom.linda.exceptions.GeneralException
Constructor that takes a throwable cause
GeneralException(String, Throwable) - Constructor for exception idi.diplom.linda.exceptions.GeneralException
Constructor that takes both a message and a throwable cause
GenericDAO<T,ID extends java.io.Serializable> - Interface in idi.diplom.linda.db.interfaces
 
GenericHibernateDAO<T,ID extends java.io.Serializable> - Class in idi.diplom.linda.db.implementation
 
GenericHibernateDAO() - Constructor for class idi.diplom.linda.db.implementation.GenericHibernateDAO
 
getAge() - Method in class idi.diplom.linda.model.Patient
 
getAl() - Method in class idi.diplom.linda.lifeshirt.TestClass
 
getAlarmDAO() - Method in class idi.diplom.linda.db.implementation.HibernateDAOFactory
 
getAlarmDAO() - Method in class idi.diplom.linda.db.interfaces.DAOFactory
 
getAlarmFromTrigger(Patient, int) - Method in class idi.diplom.linda.db.implementation.AlarmDAOHibernate
 
getAlarmFromTrigger(Patient, int) - Method in interface idi.diplom.linda.db.interfaces.AlarmDAO
 
getAlarmFromTrigger(Patient, int) - Method in class idi.diplom.linda.logic.AlarmLogic
Gets an alarm on specified patient with specified vital sign
getAlarmInterval() - Method in class idi.diplom.linda.model.Patient
 
getAlarmsBetweenDate(Patient, Date, Date) - Method in class idi.diplom.linda.db.implementation.AlarmDAOHibernate
 
getAlarmsBetweenDate(Patient, Date, Date) - Method in interface idi.diplom.linda.db.interfaces.AlarmDAO
Gets all alarms on the specified patient between the to specified dates
getAllActiveAlarms(Patient) - Method in class idi.diplom.linda.db.implementation.AlarmDAOHibernate
 
getAllActiveAlarms(Patient) - Method in interface idi.diplom.linda.db.interfaces.AlarmDAO
 
getAllActiveAlarms(Patient) - Method in class idi.diplom.linda.logic.AlarmLogic
Gets all active alarms (alarms that have not been dismissed) on patient p
getAllActiveAlarms(Patient) - Method in class idi.diplom.linda.webservice.LifeShirtWebService
Gets all alarms saved on specified patient that are not yet dismissed
getAllAlarms() - Method in class idi.diplom.linda.logic.AlarmLogic
 
getAllDismissedAlarmsWithinInterval(Patient) - Method in class idi.diplom.linda.db.implementation.AlarmDAOHibernate
 
getAllDismissedAlarmsWithinInterval(Patient) - Method in interface idi.diplom.linda.db.interfaces.AlarmDAO
NOT IN USE IN THIS VERSION
getAllNotes(Patient) - Method in class idi.diplom.linda.db.implementation.NoteDAOHibernate
 
getAllNotes(Patient) - Method in interface idi.diplom.linda.db.interfaces.NoteDAO
Gets all notes saved on specified patient
getAllNotes(Patient) - Method in class idi.diplom.linda.logic.NoteLogic
Receives all notes saved on the specified patient
getAllNotes(Patient) - Method in class idi.diplom.linda.webservice.LifeShirtWebService
Receives all notes saved on specified patient
getAllPatients() - Method in class idi.diplom.linda.logic.PatientLogic
Returns an array of all patients saved in the database
getAllPatients() - Method in class idi.diplom.linda.webservice.LifeShirtWebService
Gets all patients saved in database
getBr() - Method in class idi.diplom.linda.model.MedPacket
 
getBrThresAlarmHigh() - Method in class idi.diplom.linda.model.Patient
 
getBrThresAlarmLow() - Method in class idi.diplom.linda.model.Patient
 
getBrThresWarnHigh() - Method in class idi.diplom.linda.model.Patient
 
getBrThresWarnLow() - Method in class idi.diplom.linda.model.Patient
 
getCreated() - Method in class idi.diplom.linda.model.Note
 
getDismissNote() - Method in class idi.diplom.linda.model.Alarm
 
getDismissTime() - Method in class idi.diplom.linda.model.Alarm
public String getTriggeredThreshold() { return triggeredThreshold; } public void setTriggeredThreshold(String triggeredThreshold) { this.triggeredThreshold = triggeredThreshold; }
getHeatIdx() - Method in class idi.diplom.linda.model.MedPacket
 
getHr() - Method in class idi.diplom.linda.model.MedPacket
 
getHrThresAlarmHigh() - Method in class idi.diplom.linda.model.Patient
 
getHrThresAlarmLow() - Method in class idi.diplom.linda.model.Patient
 
getHrThresWarnHigh() - Method in class idi.diplom.linda.model.Patient
 
getHrThresWarnLow() - Method in class idi.diplom.linda.model.Patient
 
getId() - Method in class idi.diplom.linda.model.Alarm
private Collection medPackets; public Collection getMedPackets() { return medPackets; } public void setMedPackets(Collection medPackets) { this.medPackets = medPackets; } public void addMedPacket(MedPacket mp){ this.medPackets.add(mp); }
getId() - Method in class idi.diplom.linda.model.MedPacket
 
getId() - Method in class idi.diplom.linda.model.Note
 
getId() - Method in class idi.diplom.linda.model.Patient
 
getLast(Patient) - Method in class idi.diplom.linda.logic.MedPacketLogic
Returns the last medpacket fetched from LifeShirt on the specified patient
getLastMedPacket(Patient) - Method in class idi.diplom.linda.webservice.LifeShirtWebService
Gets the last saved medpacket on specified patient
getLifeshirtId() - Method in class idi.diplom.linda.model.Patient
 
getMedPacketDAO() - Method in class idi.diplom.linda.db.implementation.HibernateDAOFactory
 
getMedPacketDAO() - Method in class idi.diplom.linda.db.interfaces.DAOFactory
 
getMedPackets() - Method in class idi.diplom.linda.model.Alarm
 
getMedPacketsBetweenDate(Patient, Date, Date) - Method in class idi.diplom.linda.db.implementation.MedPacketDAOHibernate
 
getMedPacketsBetweenDate(Patient, Date, Date) - Method in interface idi.diplom.linda.db.interfaces.MedPacketDAO
Gets all medpackets between specified dates on specified patient
getMedPacketsBetweenDates(Patient, Date, Date, int) - Method in class idi.diplom.linda.logic.MedPacketLogic
Returns a list of all medpackets in database on specified patient between the specified dates.
getMedPacketsFromIntervalInFront(Alarm) - Method in class idi.diplom.linda.logic.MedPacketLogic
NOT IN USE IN THIS VERSION.
getMessage() - Method in exception idi.diplom.linda.exceptions.DatabaseException
Gets the message
getMessage() - Method in exception idi.diplom.linda.exceptions.GeneralException
Gets the message
getMessage() - Method in exception idi.diplom.linda.exceptions.IllegalInputException
Gets the message
getMessage() - Method in exception idi.diplom.linda.exceptions.LifeShirtException
Gets the message
getMotion() - Method in class idi.diplom.linda.model.MedPacket
 
getMpl() - Method in class idi.diplom.linda.lifeshirt.TestClass
 
getName() - Method in class idi.diplom.linda.model.Patient
 
getNl() - Method in class idi.diplom.linda.lifeshirt.TestClass
 
getNote() - Method in class idi.diplom.linda.model.Note
 
getNoteDAO() - Method in class idi.diplom.linda.db.implementation.HibernateDAOFactory
 
getNoteDAO() - Method in class idi.diplom.linda.db.interfaces.DAOFactory
 
getNotes(Patient, Date, Date) - Method in class idi.diplom.linda.logic.NoteLogic
 
getPacketsBetweenDates(Patient, Date, Date, int) - Method in class idi.diplom.linda.webservice.LifeShirtWebService
Returns a list of medpackets saved on specified patient between specified time.
getPatient(int) - Method in class idi.diplom.linda.logic.PatientLogic
Retrieves a patient based on the lifeshirtId
getPatient() - Method in class idi.diplom.linda.model.Alarm
 
getPatient() - Method in class idi.diplom.linda.model.MedPacket
 
getPatient() - Method in class idi.diplom.linda.model.Note
 
getPatientDAO() - Method in class idi.diplom.linda.db.implementation.HibernateDAOFactory
 
getPatientDAO() - Method in class idi.diplom.linda.db.interfaces.DAOFactory
 
getPersistentClass() - Method in class idi.diplom.linda.db.implementation.GenericHibernateDAO
 
getPl() - Method in class idi.diplom.linda.lifeshirt.TestClass
 
getPosture() - Method in class idi.diplom.linda.model.MedPacket
 
getSequenceNumber() - Method in class idi.diplom.linda.model.MedPacket
 
getSessionFactory() - Static method in class idi.diplom.linda.db.implementation.HibernateUtil
 
getSpo2() - Method in class idi.diplom.linda.model.MedPacket
 
getSpo2ThresAlarmHigh() - Method in class idi.diplom.linda.model.Patient
 
getSpo2ThresAlarmLow() - Method in class idi.diplom.linda.model.Patient
 
getSpo2ThresWarnHigh() - Method in class idi.diplom.linda.model.Patient
 
getSpo2ThresWarnLow() - Method in class idi.diplom.linda.model.Patient
 
getTemp() - Method in class idi.diplom.linda.model.MedPacket
 
getTimestamp() - Method in class idi.diplom.linda.model.Alarm
 
getTimestamp() - Method in class idi.diplom.linda.model.MedPacket
 
getTriggeredThreshold() - Method in class idi.diplom.linda.model.Alarm
public Sensor_enum getTriggeredThreshold() { return triggeredThreshold; } public void setTriggeredThreshold(Sensor_enum triggeredThreshold) { this.triggeredThreshold = triggeredThreshold; }
getVarsloaded() - Method in class idi.diplom.linda.model.MedPacket
 

A B C D F G H I L M N P R S T U V