Uses of Class
idi.diplom.linda.model.Patient

Packages that use Patient
idi.diplom.linda.db.implementation   
idi.diplom.linda.db.interfaces   
idi.diplom.linda.logic   
idi.diplom.linda.model   
idi.diplom.linda.webservice   
 

Uses of Patient in idi.diplom.linda.db.implementation
 

Methods in idi.diplom.linda.db.implementation that return Patient
 Patient PatientDAOHibernate.findByLifeShirtId(int lifeshirtId)
           
 

Methods in idi.diplom.linda.db.implementation with parameters of type Patient
 boolean AlarmDAOHibernate.dismissedWithinInterval(long milliseconds, Patient p)
           
 MedPacket MedPacketDAOHibernate.findLast(Patient p)
           
 Alarm AlarmDAOHibernate.getAlarmFromTrigger(Patient p, int s)
           
 java.util.List<Alarm> AlarmDAOHibernate.getAlarmsBetweenDate(Patient p, java.util.Date fromTime, java.util.Date toTime)
           
 java.util.List<Alarm> AlarmDAOHibernate.getAllActiveAlarms(Patient p)
           
 java.util.List<Alarm> AlarmDAOHibernate.getAllDismissedAlarmsWithinInterval(Patient p)
           
 java.util.List<Note> NoteDAOHibernate.getAllNotes(Patient p)
           
 java.util.List<MedPacket> MedPacketDAOHibernate.getMedPacketsBetweenDate(Patient p, java.util.Date fromTime, java.util.Date toTime)
           
 

Uses of Patient in idi.diplom.linda.db.interfaces
 

Methods in idi.diplom.linda.db.interfaces that return Patient
 Patient PatientDAO.findByLifeShirtId(int lifeshirtId)
          Gets a patient based on lifeshirtId
 

Methods in idi.diplom.linda.db.interfaces with parameters of type Patient
 boolean AlarmDAO.dismissedWithinInterval(long milliseconds, Patient p)
          Checks if the patient has any alarms that was dismissed within the specified number of milliseconds.
 MedPacket MedPacketDAO.findLast(Patient p)
          Gets the last medpacket saved on specified patient
 Alarm AlarmDAO.getAlarmFromTrigger(Patient p, int s)
           
 java.util.List<Alarm> AlarmDAO.getAlarmsBetweenDate(Patient p, java.util.Date fromTime, java.util.Date toTime)
          Gets all alarms on the specified patient between the to specified dates
 java.util.List<Alarm> AlarmDAO.getAllActiveAlarms(Patient p)
           
 java.util.List<Alarm> AlarmDAO.getAllDismissedAlarmsWithinInterval(Patient p)
          NOT IN USE IN THIS VERSION
 java.util.List<Note> NoteDAO.getAllNotes(Patient p)
          Gets all notes saved on specified patient
 java.util.List<MedPacket> MedPacketDAO.getMedPacketsBetweenDate(Patient p, java.util.Date fromDate, java.util.Date toTime)
          Gets all medpackets between specified dates on specified patient
 

Uses of Patient in idi.diplom.linda.logic
 

Methods in idi.diplom.linda.logic that return Patient
 Patient[] PatientLogic.getAllPatients()
          Returns an array of all patients saved in the database
 Patient PatientLogic.getPatient(int lifeshirtId)
          Retrieves a patient based on the lifeshirtId
 

Methods in idi.diplom.linda.logic with parameters of type Patient
 void AlarmLogic.addPacketToDismissedAlarms(MedPacket mp, Patient p)
          NOT IN USE IN THIS VERSION
 void AlarmLogic.checkForAlarms(Patient p, MedPacket mp)
          Checks if medpacket contains abnormal vital sign values and creates alarms
 Alarm AlarmLogic.getAlarmFromTrigger(Patient p, int s)
          Gets an alarm on specified patient with specified vital sign
 Alarm[] AlarmLogic.getAllActiveAlarms(Patient p)
          Gets all active alarms (alarms that have not been dismissed) on patient p
 Note[] NoteLogic.getAllNotes(Patient p)
          Receives all notes saved on the specified patient
 MedPacket MedPacketLogic.getLast(Patient p)
          Returns the last medpacket fetched from LifeShirt on the specified patient
 MedPacket[] MedPacketLogic.getMedPacketsBetweenDates(Patient p, java.util.Date fromTime, java.util.Date toTime, int resolution)
          Returns a list of all medpackets in database on specified patient between the specified dates.
 Note[] NoteLogic.getNotes(Patient p, java.util.Date fromDate, java.util.Date toDate)
           
 void PatientLogic.savePatient(Patient p)
          Saves a patient in the database
 

Uses of Patient in idi.diplom.linda.model
 

Methods in idi.diplom.linda.model that return Patient
 Patient Note.getPatient()
           
 Patient MedPacket.getPatient()
           
 Patient Alarm.getPatient()
           
 

Methods in idi.diplom.linda.model with parameters of type Patient
 void Note.setPatient(Patient patient)
           
 void MedPacket.setPatient(Patient patient)
           
 void Alarm.setPatient(Patient patient)
           
 

Uses of Patient in idi.diplom.linda.webservice
 

Methods in idi.diplom.linda.webservice that return Patient
 Patient[] LifeShirtWebService.getAllPatients()
          Gets all patients saved in database
 

Methods in idi.diplom.linda.webservice with parameters of type Patient
 Alarm[] LifeShirtWebService.getAllActiveAlarms(Patient p)
          Gets all alarms saved on specified patient that are not yet dismissed
 Note[] LifeShirtWebService.getAllNotes(Patient p)
          Receives all notes saved on specified patient
 MedPacket LifeShirtWebService.getLastMedPacket(Patient p)
          Gets the last saved medpacket on specified patient
 MedPacket[] LifeShirtWebService.getPacketsBetweenDates(Patient p, java.util.Date fromTime, java.util.Date toTime, int resolution)
          Returns a list of medpackets saved on specified patient between specified time.
 void LifeShirtWebService.saveNewPatient(Patient p)
          Saves a new patient to the database
 void LifeShirtWebService.updatePatient(Patient p)
          Updates a patient's profile