Uses of Class
idi.diplom.linda.exceptions.DatabaseException

Packages that use DatabaseException
idi.diplom.linda.lifeshirt   
idi.diplom.linda.logic   
idi.diplom.linda.webservice   
 

Uses of DatabaseException in idi.diplom.linda.lifeshirt
 

Methods in idi.diplom.linda.lifeshirt that throw DatabaseException
 void Processer.storeMedPacket(MedPacket mp)
          Stores a medpacket in the database
 

Uses of DatabaseException in idi.diplom.linda.logic
 

Methods in idi.diplom.linda.logic that throw DatabaseException
 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
 void AlarmLogic.dismissAlarm(Alarm a)
          Dismisses the specified alarm
 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
 Alarm[] AlarmLogic.getAllAlarms()
           
 Note[] NoteLogic.getAllNotes(Patient p)
          Receives all notes saved on the specified patient
 Patient[] PatientLogic.getAllPatients()
          Returns an array of all patients saved in the database
 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.
 java.util.List<MedPacket> MedPacketLogic.getMedPacketsFromIntervalInFront(Alarm a)
          NOT IN USE IN THIS VERSION.
 Patient PatientLogic.getPatient(int lifeshirtId)
          Retrieves a patient based on the lifeshirtId
 void AlarmLogic.saveAlarm(Alarm a)
          Saves an alarm
 void NoteLogic.saveNote(Note n)
          Saves the note in database
 void PatientLogic.savePatient(Patient p)
          Saves a patient in the database
 

Uses of DatabaseException in idi.diplom.linda.webservice
 

Methods in idi.diplom.linda.webservice that throw DatabaseException
 void LifeShirtWebService.dismissAlarm(Alarm a)
          Dismissed the specified alarm
 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
 Patient[] LifeShirtWebService.getAllPatients()
          Gets all patients saved in database
 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.saveNote(Note n)
          Saves a note to the database
 void LifeShirtWebService.updatePatient(Patient p)
          Updates a patient's profile