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

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

Uses of Clinician in org.domain.rhims.backing
 

Methods in org.domain.rhims.backing that return Clinician
 Clinician CreateCaseBackingBean.getCurrentClinician()
           
 

Methods in org.domain.rhims.backing that return types with arguments of type Clinician
 java.util.List<Clinician> CreateCaseBackingBean.getClinicianList()
           
 

Methods in org.domain.rhims.backing with parameters of type Clinician
 void CreateCaseBackingBean.setCurrentClinician(Clinician currentClinician)
           
 

Method parameters in org.domain.rhims.backing with type arguments of type Clinician
 void CreateCaseBackingBean.setClinicianList(java.util.List<Clinician> clinicianList)
           
 

Uses of Clinician in org.domain.rhims.dao
 

Methods in org.domain.rhims.dao that return Clinician
 Clinician UserDAOMySQL.getClinician(long clinicianID)
           
 Clinician UserDAO.getClinician(long clinicianID)
          This method retrieves a Clinician based on their unique userID number.
 Clinician UserDAOMySQL.getClinician(java.lang.String clinicianUsername)
           
 Clinician UserDAO.getClinician(java.lang.String clinicianUsername)
          This method retrieves a Clinician based on their username.
 

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

Methods in org.domain.rhims.dao with parameters of type Clinician
 java.lang.String UserDAOMySQL.addClinician(Clinician clinician)
           
 java.lang.String UserDAO.addClinician(Clinician clinician)
          This method persists a new clinician.
 CaseFile CaseDAOMySQL.getCase(Patient patient, Clinician clinician)
           
 CaseFile CaseDAO.getCase(Patient patient, Clinician clinician)
          Retrieve the CaseFile between the supplied patient and clinician.
 

Uses of Clinician in org.domain.rhims.entity
 

Methods in org.domain.rhims.entity that return Clinician
 Clinician CaseFile.getClinician()
           
 

Methods in org.domain.rhims.entity with parameters of type Clinician
 void CaseFile.setClinician(Clinician clinician)
           
 

Constructors in org.domain.rhims.entity with parameters of type Clinician
CaseFile(Patient patient, Clinician clinician)
           
 

Uses of Clinician in org.domain.rhims.manager
 

Methods in org.domain.rhims.manager that return Clinician
 Clinician UserManagerAction.getClinician(java.lang.String clinicianUsername)
           
 Clinician UserManager.getClinician(java.lang.String clinicianUsername)
          This method retrieves a Clinician given their username
 

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

Methods in org.domain.rhims.manager with parameters of type Clinician
 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<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