Uses of Class
org.domain.rhims.entity.Patient

Packages that use Patient
org.domain.rhims.backing   
org.domain.rhims.dao   
org.domain.rhims.entity   
org.domain.rhims.manager   
 

Uses of Patient in org.domain.rhims.backing
 

Methods in org.domain.rhims.backing that return Patient
 Patient CreateCaseBackingBean.getCurrentPatient()
           
 

Methods in org.domain.rhims.backing with parameters of type Patient
 void CreateCaseBackingBean.setCurrentPatient(Patient currentPatient)
           
 

Uses of Patient in org.domain.rhims.dao
 

Methods in org.domain.rhims.dao that return Patient
 Patient UserDAOMySQL.getPatient(long patientID)
           
 Patient UserDAO.getPatient(long patientID)
          This method retrieves a Patient based on their unique patientID number.
 Patient UserDAOMySQL.getPatient(java.lang.String patientUsername)
           
 Patient UserDAO.getPatient(java.lang.String patientUsername)
          This method retrieves a Patient based on their unique username.
 

Methods in org.domain.rhims.dao that return types with arguments of type Patient
 java.util.List<Patient> UserDAOMySQL.getAllPatients()
           
 java.util.List<Patient> UserDAO.getAllPatients()
          This method returns a list of all the Patients in the system
 

Methods in org.domain.rhims.dao with parameters of type Patient
 java.lang.String UserDAOMySQL.addPatient(Patient patient)
           
 java.lang.String UserDAO.addPatient(Patient patient)
          This method persists a new patient.
 CaseFile CaseDAOMySQL.getCase(Patient patient, Clinician clinician)
           
 CaseFile CaseDAO.getCase(Patient patient, Clinician clinician)
          Retrieve the CaseFile between the supplied patient and clinician.
 java.util.List<CaseFile> CaseDAOMySQL.getCases(Patient patient)
           
 java.util.List<CaseFile> CaseDAO.getCases(Patient patient)
          Retrieve all the CaseFiles that contain the supplied Patient
 

Uses of Patient in org.domain.rhims.entity
 

Methods in org.domain.rhims.entity that return Patient
 Patient MedicalDataValue.getPatient()
           
 Patient CaseFile.getPatient()
           
 

Methods in org.domain.rhims.entity with parameters of type Patient
 void MedicalDataValue.setPatient(Patient patient)
           
 void CaseFile.setPatient(Patient patient)
           
 

Constructors in org.domain.rhims.entity with parameters of type Patient
CaseFile(Patient patient, Clinician clinician)
           
MedicalDataValue(Patient patient, java.util.Date timeStamp)
          Constructor
Pulse(Patient patient, java.util.Date timeStamp, int medicalData)
          Constructor
 

Uses of Patient in org.domain.rhims.manager
 

Methods in org.domain.rhims.manager that return Patient
 Patient UserManagerAction.getPatient(java.lang.String patientUsername)
           
 Patient UserManager.getPatient(java.lang.String patientUsername)
          This method retrieves a Patient given their username
 

Methods in org.domain.rhims.manager that return types with arguments of type Patient
 java.util.List<Patient> UserManagerAction.getAllPatients()
           
 java.util.List<Patient> UserManager.getAllPatients()
          This method gets a list of all the Patients in the system.
 

Methods in org.domain.rhims.manager with parameters of type Patient
 java.lang.String CaseManagerAction.createCase(Patient patient, Clinician clinician)
           
 java.lang.String CaseManager.createCase(Patient patient, Clinician clinician)
          This method creates a new CaseFile between the supplied Patient and Clinician.
 void GuidelineManagerAction.createPulseGuideline(Patient patient, Clinician clinician, double lowerBound, double upperBound)
           
 void GuidelineManager.createPulseGuideline(Patient patient, Clinician clinician, double lowerBound, double upperBound)
          Create a new guideline and associate it with the CaseFile of the supplied Clinician and Patient
 CaseFile CaseManagerAction.getCase(Patient patient, Clinician clinician)
           
 CaseFile CaseManager.getCase(Patient patient, Clinician clinician)
          This method retrieves the CaseFile for the supplied Patient, Clinician combo.
 java.util.List<CaseFile> CaseManagerAction.getCases(Patient patient)
           
 java.util.List<CaseFile> CaseManager.getCases(Patient patient)
          Retrieves all of the cases associated with Patient patient
 java.util.List<DataGuideline> GuidelineManagerAction.getGuidelines(Patient patient, Clinician clinician, java.lang.String dataType)
           
 java.util.List<DataGuideline> GuidelineManager.getGuidelines(Patient patient, Clinician clinician, java.lang.String dataType)
          Get a list of all the DataGuidelines for a given CaseFile, finds the CaseFile based on the supplied patient and clinician