Package | Description |
---|---|
org.openmrs |
These classes represent the core domain objects for the OpenMRS project.
|
org.openmrs.api |
The primary OpenMRS API interfaces.
|
org.openmrs.api.db |
OpenMRS database layer interfaces.
|
org.openmrs.api.db.hibernate |
Resources for Hibernate ORM.
|
org.openmrs.api.handler | |
org.openmrs.api.impl | |
org.openmrs.web.controller.visit | |
org.openmrs.web.form.visit | |
org.openmrs.web.taglib |
Modifier and Type | Method and Description |
---|---|
VisitType |
Visit.getVisitType() |
Modifier and Type | Method and Description |
---|---|
void |
Visit.setVisitType(VisitType visitType) |
Constructor and Description |
---|
Visit(Patient patient,
VisitType visitType,
java.util.Date startDatetime)
|
Modifier and Type | Method and Description |
---|---|
VisitType |
VisitService.getVisitType(java.lang.Integer visitTypeId)
Gets a visit type by its visit type id.
|
VisitType |
VisitService.getVisitTypeByUuid(java.lang.String uuid)
Gets a visit type by its UUID.
|
VisitType |
VisitService.retireVisitType(VisitType visitType,
java.lang.String reason)
Retires a given visit type.
|
VisitType |
VisitService.saveVisitType(VisitType visitType)
Creates or updates the given visit type in the database.
|
VisitType |
VisitService.unretireVisitType(VisitType visitType)
Unretires a visit type.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<VisitType> |
VisitService.getAllVisitTypes()
Gets all visit types.
|
java.util.List<VisitType> |
VisitService.getVisitTypes(java.lang.String fuzzySearchPhrase)
Gets all visit types whose names are similar to or contain the given search phrase.
|
Modifier and Type | Method and Description |
---|---|
void |
VisitService.purgeVisitType(VisitType visitType)
Completely removes a visit type from the database.
|
VisitType |
VisitService.retireVisitType(VisitType visitType,
java.lang.String reason)
Retires a given visit type.
|
VisitType |
VisitService.saveVisitType(VisitType visitType)
Creates or updates the given visit type in the database.
|
VisitType |
VisitService.unretireVisitType(VisitType visitType)
Unretires a visit type.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Encounter> |
EncounterService.getEncounters(Patient who,
Location loc,
java.util.Date fromDate,
java.util.Date toDate,
java.util.Collection<Form> enteredViaForms,
java.util.Collection<EncounterType> encounterTypes,
java.util.Collection<Provider> providers,
java.util.Collection<VisitType> visitTypes,
java.util.Collection<Visit> visits,
boolean includeVoided)
Get all encounters that match a variety of (nullable) criteria.
|
java.util.List<Visit> |
VisitService.getVisits(java.util.Collection<VisitType> visitTypes,
java.util.Collection<Patient> patients,
java.util.Collection<Location> locations,
java.util.Collection<Concept> indications,
java.util.Date minStartDatetime,
java.util.Date maxStartDatetime,
java.util.Date minEndDatetime,
java.util.Date maxEndDatetime,
java.util.Map<VisitAttributeType,java.lang.Object> attributeValues,
boolean includeInactive,
boolean includeVoided)
Gets the visits matching the specified arguments
|
Modifier and Type | Method and Description |
---|---|
VisitType |
VisitDAO.getVisitType(java.lang.Integer visitTypeId) |
VisitType |
VisitDAO.getVisitTypeByUuid(java.lang.String uuid) |
VisitType |
VisitDAO.saveVisitType(VisitType visitType) |
Modifier and Type | Method and Description |
---|---|
java.util.List<VisitType> |
VisitDAO.getAllVisitTypes() |
java.util.List<VisitType> |
VisitDAO.getVisitTypes(java.lang.String fuzzySearchPhrase) |
Modifier and Type | Method and Description |
---|---|
void |
VisitDAO.purgeVisitType(VisitType visitType) |
VisitType |
VisitDAO.saveVisitType(VisitType visitType) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Encounter> |
EncounterDAO.getEncounters(Patient patient,
Location location,
java.util.Date fromDate,
java.util.Date toDate,
java.util.Collection<Form> enteredViaForms,
java.util.Collection<EncounterType> encounterTypes,
java.util.Collection<Provider> providers,
java.util.Collection<VisitType> visitTypes,
java.util.Collection<Visit> visits,
boolean includeVoided) |
Visit |
VisitDAO.getNextVisit(Visit previousVisit,
java.util.Collection<VisitType> visitTypes,
java.util.Date maximumStartDate)
Gets the next active visit which matches the specified visit types
|
java.util.List<Visit> |
VisitDAO.getVisits(java.util.Collection<VisitType> visitTypes,
java.util.Collection<Patient> patients,
java.util.Collection<Location> locations,
java.util.Collection<Concept> indications,
java.util.Date minStartDatetime,
java.util.Date maxStartDatetime,
java.util.Date minEndDatetime,
java.util.Date maxEndDatetime,
java.util.Map<VisitAttributeType,java.lang.String> serializedAttributeValues,
boolean includeInactive,
boolean includeVoided)
Gets the visits matching the specified arguments
|
Modifier and Type | Method and Description |
---|---|
VisitType |
HibernateVisitDAO.getVisitType(java.lang.Integer visitTypeId) |
VisitType |
HibernateVisitDAO.getVisitTypeByUuid(java.lang.String uuid) |
VisitType |
HibernateVisitDAO.saveVisitType(VisitType visitType) |
Modifier and Type | Method and Description |
---|---|
java.util.List<VisitType> |
HibernateVisitDAO.getAllVisitTypes() |
java.util.List<VisitType> |
HibernateVisitDAO.getVisitTypes(java.lang.String fuzzySearchPhrase) |
Modifier and Type | Method and Description |
---|---|
void |
HibernateVisitDAO.purgeVisitType(VisitType visitType) |
VisitType |
HibernateVisitDAO.saveVisitType(VisitType visitType) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Encounter> |
HibernateEncounterDAO.getEncounters(Patient patient,
Location location,
java.util.Date fromDate,
java.util.Date toDate,
java.util.Collection<Form> enteredViaForms,
java.util.Collection<EncounterType> encounterTypes,
java.util.Collection<Provider> providers,
java.util.Collection<VisitType> visitTypes,
java.util.Collection<Visit> visits,
boolean includeVoided) |
Visit |
HibernateVisitDAO.getNextVisit(Visit previousVisit,
java.util.Collection<VisitType> visitTypes,
java.util.Date maximumStartDate) |
java.util.List<Visit> |
HibernateVisitDAO.getVisits(java.util.Collection<VisitType> visitTypes,
java.util.Collection<Patient> patients,
java.util.Collection<Location> locations,
java.util.Collection<Concept> indications,
java.util.Date minStartDatetime,
java.util.Date maxStartDatetime,
java.util.Date minEndDatetime,
java.util.Date maxEndDatetime,
java.util.Map<VisitAttributeType,java.lang.String> serializedAttributeValues,
boolean includeInactive,
boolean includeVoided) |
Modifier and Type | Method and Description |
---|---|
protected VisitType |
ExistingOrNewVisitAssignmentHandler.getVisitType(Encounter encounter)
Gets the visit type for an encounter.
|
Modifier and Type | Method and Description |
---|---|
VisitType |
VisitServiceImpl.getVisitType(java.lang.Integer visitTypeId) |
VisitType |
VisitServiceImpl.getVisitTypeByUuid(java.lang.String uuid) |
VisitType |
VisitServiceImpl.retireVisitType(VisitType visitType,
java.lang.String reason) |
VisitType |
VisitServiceImpl.saveVisitType(VisitType visitType) |
VisitType |
VisitServiceImpl.unretireVisitType(VisitType visitType) |
Modifier and Type | Method and Description |
---|---|
java.util.List<VisitType> |
VisitServiceImpl.getAllVisitTypes() |
java.util.List<VisitType> |
VisitServiceImpl.getVisitTypes(java.lang.String fuzzySearchPhrase) |
Modifier and Type | Method and Description |
---|---|
void |
VisitServiceImpl.purgeVisitType(VisitType visitType) |
VisitType |
VisitServiceImpl.retireVisitType(VisitType visitType,
java.lang.String reason) |
VisitType |
VisitServiceImpl.saveVisitType(VisitType visitType) |
VisitType |
VisitServiceImpl.unretireVisitType(VisitType visitType) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Encounter> |
EncounterServiceImpl.getEncounters(Patient who,
Location loc,
java.util.Date fromDate,
java.util.Date toDate,
java.util.Collection<Form> enteredViaForms,
java.util.Collection<EncounterType> encounterTypes,
java.util.Collection<Provider> providers,
java.util.Collection<VisitType> visitTypes,
java.util.Collection<Visit> visits,
boolean includeVoided) |
java.util.List<Visit> |
VisitServiceImpl.getVisits(java.util.Collection<VisitType> visitTypes,
java.util.Collection<Patient> patients,
java.util.Collection<Location> locations,
java.util.Collection<Concept> indications,
java.util.Date minStartDatetime,
java.util.Date maxStartDatetime,
java.util.Date minEndDatetime,
java.util.Date maxEndDatetime,
java.util.Map<VisitAttributeType,java.lang.Object> attributeValues,
boolean includeInactive,
boolean includeVoided) |
Modifier and Type | Method and Description |
---|---|
java.util.List<VisitType> |
ConfigureVisitsFormController.getVisitTypes() |
java.util.List<VisitType> |
VisitFormController.getVisitTypes() |
Modifier and Type | Method and Description |
---|---|
java.util.List<VisitType> |
ConfigureVisitsForm.getVisitTypesToClose() |
Modifier and Type | Method and Description |
---|---|
void |
ConfigureVisitsForm.setVisitTypesToClose(java.util.List<VisitType> visitTypesToClose) |
Modifier and Type | Method and Description |
---|---|
VisitType |
FormatTag.getVisitType() |
Modifier and Type | Method and Description |
---|---|
void |
FormatTag.setVisitType(VisitType visitType) |
Copyright © 2018 OpenMRS Inc.. All Rights Reserved.