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.context |
This package describes the context framework through which
authentication is performed and services provided for the OpenMRS system.
|
org.openmrs.api.db |
OpenMRS database layer interfaces.
|
org.openmrs.api.db.hibernate |
Resources for Hibernate ORM.
|
org.openmrs.api.impl | |
org.openmrs.reporting |
Deprecated
|
org.openmrs.reporting.export | |
org.openmrs.util |
Shared utilities for OpenMRS classes
|
org.openmrs.web.controller.patient | |
org.openmrs.web.dwr | |
org.openmrs.web.taglib |
Modifier and Type | Field and Description |
---|---|
protected Location |
Obs.location |
Modifier and Type | Method and Description |
---|---|
Location |
Visit.getLocation() |
Location |
LocationAttribute.getLocation() |
Location |
Encounter.getLocation() |
Location |
PatientProgram.getLocation() |
Location |
Obs.getLocation() |
Location |
PatientIdentifier.getLocation() |
Location |
Location.getParentLocation() |
Location |
Location.hydrate(java.lang.String locationId) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Location> |
Location.findPossibleValues(java.lang.String searchText) |
java.util.Set<Location> |
Location.getChildLocations() |
java.util.Set<Location> |
Location.getChildLocations(boolean includeRetired)
Returns all childLocations where child.locationId = this.locationId.
|
java.util.List<Location> |
Location.getPossibleValues() |
Modifier and Type | Method and Description |
---|---|
void |
Location.addChildLocation(Location child) |
static java.lang.Boolean |
Location.isInHierarchy(Location location,
Location root)
Checks whether 'location' is a member of the tree starting at 'root'.
|
void |
Location.removeChildLocation(Location child) |
void |
Visit.setLocation(Location location) |
void |
LocationAttribute.setLocation(Location location) |
void |
Encounter.setLocation(Location location) |
void |
PatientProgram.setLocation(Location location) |
void |
Obs.setLocation(Location location) |
void |
PatientIdentifier.setLocation(Location location) |
void |
Location.setParentLocation(Location parentLocationId) |
Modifier and Type | Method and Description |
---|---|
void |
Location.setChildLocations(java.util.Set<Location> childLocations) |
Constructor and Description |
---|
Obs(Person person,
Concept question,
java.util.Date obsDatetime,
Location location)
Required parameters constructor A value is also required, but that can be one of: valueCoded,
valueDrug, valueNumeric, or valueText
|
PatientIdentifier(java.lang.String identifier,
PatientIdentifierType type,
Location location)
Convenience constructor for creating a basic identifier
|
Modifier and Type | Method and Description |
---|---|
Location |
LocationService.getDefaultLocation()
Returns the default location for this implementation.
|
Location |
LocationService.getLocation(java.lang.Integer locationId)
Returns a location given that locations primary key
locationId A null value is
returned if no location exists with this location. |
Location |
EncounterService.getLocation(java.lang.Integer locationId)
Deprecated.
replaced by
LocationService.getLocation(Integer) |
Location |
LocationService.getLocation(java.lang.String name)
Returns a location given the location's exact
name A null value is returned if
there is no location with this name |
Location |
EncounterService.getLocationByName(java.lang.String name)
Deprecated.
replaced by
LocationService.getLocation(String) |
Location |
LocationService.getLocationByUuid(java.lang.String uuid)
Returns a location by uuid
|
Location |
LocationService.retireLocation(Location location,
java.lang.String reason)
Retires the given location.
|
Location |
LocationService.saveLocation(Location location)
Save location to database (create if new or update if changed)
|
Location |
LocationService.unretireLocation(Location location)
Unretire the given location.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Location> |
EncounterService.findLocations(java.lang.String name)
Deprecated.
replaced by
LocationService.getLocations(String) |
java.util.List<Location> |
LocationService.getAllLocations()
Returns all locations, includes retired locations.
|
java.util.List<Location> |
LocationService.getAllLocations(boolean includeRetired)
Returns all locations.
|
java.util.List<Location> |
EncounterService.getLocations()
Deprecated.
replaced by
LocationService.getAllLocations() |
java.util.List<Location> |
LocationService.getLocations(java.lang.String nameFragment)
Returns locations that match the beginning of the given string.
|
java.util.List<Location> |
LocationService.getLocations(java.lang.String nameFragment,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length)
|
java.util.List<Location> |
LocationService.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.Object> attributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length)
Gets the locations matching the specified arguments.
|
java.util.List<Location> |
LocationService.getLocationsByTag(LocationTag tag)
Returns locations that contain the given tag.
|
java.util.List<Location> |
LocationService.getLocationsHavingAllTags(java.util.List<LocationTag> tags)
Returns locations that are mapped to all given tags.
|
java.util.List<Location> |
LocationService.getLocationsHavingAnyTag(java.util.List<LocationTag> tags)
Returns locations that are mapped to any of the given tags.
|
java.util.List<Location> |
LocationService.getRootLocations(boolean includeRetired)
Returns all root locations (i.e.
|
Modifier and Type | Method and Description |
---|---|
void |
AdministrationService.createLocation(Location location)
Deprecated.
|
void |
AdministrationService.deleteLocation(Location location)
Deprecated.
|
java.util.Collection<Encounter> |
EncounterService.getEncounters(Location loc,
java.util.Date fromDate,
java.util.Date toDate)
|
java.util.List<Encounter> |
EncounterService.getEncounters(Patient who,
Location where)
|
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,
boolean includeVoided)
|
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<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<User> providers,
boolean includeVoided)
|
java.util.List<Location> |
LocationService.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.Object> attributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length)
Gets the locations matching the specified arguments.
|
java.util.List<Obs> |
ObsService.getObservations(Concept c,
Location loc,
java.lang.String sort,
java.lang.Integer personType,
boolean includeVoided)
|
Cohort |
PatientSetService.getPatientsHavingEncounters(EncounterType encounterType,
Location location,
Form form,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.Integer minCount,
java.lang.Integer maxCount)
Searches for patients who have encounters as described by the arguments to this method
|
Cohort |
PatientSetService.getPatientsHavingEncounters(java.util.List<EncounterType> encounterTypeList,
Location location,
Form form,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.Integer minCount,
java.lang.Integer maxCount)
Gets patients who have encounters as described by the parameters specified (all optional)
|
Cohort |
PatientSetService.getPatientsHavingLocation(Location loc) |
Cohort |
PatientSetService.getPatientsHavingLocation(Location loc,
PatientSetService.PatientLocationMethod method) |
void |
LocationService.purgeLocation(Location location)
Completely remove a location from the database (not reversible) This method delegates to
#purgeLocation(location, boolean) method
|
Location |
LocationService.retireLocation(Location location,
java.lang.String reason)
Retires the given location.
|
Location |
LocationService.saveLocation(Location location)
Save location to database (create if new or update if changed)
|
Location |
LocationService.unretireLocation(Location location)
Unretire the given location.
|
void |
AdministrationService.updateLocation(Location location)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
ObsService.getObservationCount(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
boolean includeVoidedObs)
This method fetches the count of observations according to the criteria in the given
arguments.
|
java.util.List<Obs> |
ObsService.getObservations(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.util.List<java.lang.String> sort,
java.lang.Integer mostRecentN,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
boolean includeVoidedObs)
This method fetches observations according to the criteria in the given arguments.
|
java.util.List<PatientIdentifier> |
PatientService.getPatientIdentifiers(java.lang.String identifier,
java.util.List<PatientIdentifierType> patientIdentifierTypes,
java.util.List<Location> locations,
java.util.List<Patient> patients,
java.lang.Boolean isPreferred)
Get all patientIdentifiers that match all of the given criteria Voided identifiers are not
returned
|
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 |
---|---|
Location |
UserContext.getLocation() |
Modifier and Type | Method and Description |
---|---|
void |
UserContext.setLocation(Location location) |
Modifier and Type | Method and Description |
---|---|
Location |
LocationDAO.getLocation(java.lang.Integer locationId)
Get a location by locationId
|
Location |
LocationDAO.getLocation(java.lang.String name)
Get a location by name
|
Location |
LocationDAO.getLocationByUuid(java.lang.String uuid) |
Location |
EncounterDAO.getSavedEncounterLocation(Encounter encounter)
Gets the location of the encounter
|
Location |
LocationDAO.saveLocation(Location location)
Create or update a location.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Location> |
LocationDAO.getAllLocations(boolean includeRetired)
Get all locations
|
java.util.List<Location> |
LocationDAO.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.String> serializedAttributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length)
Gets the locations matching the specified arguments
|
java.util.List<Location> |
LocationDAO.getLocationsHavingAllTags(java.util.List<LocationTag> locationTagIdList)
Get locations that have all the location tags specified.
|
java.util.List<Location> |
LocationDAO.getRootLocations(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
void |
LocationDAO.deleteLocation(Location location)
Completely remove the location from the database.
|
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) |
java.util.List<Location> |
LocationDAO.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.String> serializedAttributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length)
Gets the locations matching the specified arguments
|
Cohort |
PatientSetDAO.getPatientsHavingEncounters(java.util.List<EncounterType> encounterTypeList,
Location location,
Form form,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.Integer minCount,
java.lang.Integer maxCount) |
Location |
LocationDAO.saveLocation(Location location)
Create or update a location.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
ObsDAO.getObservationCount(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
java.util.List<ConceptName> valueCodedNameAnswers,
boolean includeVoidedObs) |
java.util.List<Obs> |
ObsDAO.getObservations(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.util.List<java.lang.String> sort,
java.lang.Integer mostRecentN,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
boolean includeVoidedObs) |
java.util.List<PatientIdentifier> |
PatientDAO.getPatientIdentifiers(java.lang.String identifier,
java.util.List<PatientIdentifierType> patientIdentifierTypes,
java.util.List<Location> locations,
java.util.List<Patient> patients,
java.lang.Boolean isPreferred) |
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 |
---|---|
Location |
HibernateLocationDAO.getLocation(java.lang.Integer locationId) |
Location |
HibernateLocationDAO.getLocation(java.lang.String name) |
Location |
HibernateLocationDAO.getLocationByUuid(java.lang.String uuid) |
Location |
HibernateEncounterDAO.getSavedEncounterLocation(Encounter encounter) |
Location |
HibernateLocationDAO.saveLocation(Location location) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Location> |
HibernateLocationDAO.getAllLocations(boolean includeRetired) |
java.util.List<Location> |
HibernateLocationDAO.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.String> serializedAttributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length) |
java.util.List<Location> |
HibernateLocationDAO.getLocationsHavingAllTags(java.util.List<LocationTag> tags) |
java.util.List<Location> |
HibernateLocationDAO.getRootLocations(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
void |
HibernateLocationDAO.deleteLocation(Location location) |
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) |
java.util.List<Location> |
HibernateLocationDAO.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.String> serializedAttributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length) |
Cohort |
HibernatePatientSetDAO.getPatientsHavingEncounters(java.util.List<EncounterType> encounterTypeList,
Location location,
Form form,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.Integer minCount,
java.lang.Integer maxCount)
Returns the set of patients that have encounters, with several optional parameters:
of type encounterType
at a given location
from filling out a specific form
on or after fromDate
on or before toDate
patients with at least minCount of the given encounters
patients with up to maxCount of the given encounters
|
Location |
HibernateLocationDAO.saveLocation(Location location) |
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
HibernateObsDAO.getObservationCount(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
java.util.List<ConceptName> valueCodedNameAnswers,
boolean includeVoidedObs) |
java.util.List<Obs> |
HibernateObsDAO.getObservations(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.util.List<java.lang.String> sortList,
java.lang.Integer mostRecentN,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
boolean includeVoidedObs) |
java.util.List<PatientIdentifier> |
HibernatePatientDAO.getPatientIdentifiers(java.lang.String identifier,
java.util.List<PatientIdentifierType> patientIdentifierTypes,
java.util.List<Location> locations,
java.util.List<Patient> patients,
java.lang.Boolean isPreferred) |
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 |
---|---|
Location |
LocationServiceImpl.getDefaultLocation() |
Location |
LocationServiceImpl.getLocation(java.lang.Integer locationId) |
Location |
EncounterServiceImpl.getLocation(java.lang.Integer locationId)
Deprecated.
use LocationService.getLocation(locationId)
|
Location |
LocationServiceImpl.getLocation(java.lang.String name) |
Location |
EncounterServiceImpl.getLocationByName(java.lang.String name)
Deprecated.
use LocationService.getLocation(name)
|
Location |
LocationServiceImpl.getLocationByUuid(java.lang.String uuid) |
Location |
LocationServiceImpl.retireLocation(Location location,
java.lang.String reason) |
Location |
LocationServiceImpl.saveLocation(Location location) |
Location |
LocationServiceImpl.unretireLocation(Location location) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Location> |
EncounterServiceImpl.findLocations(java.lang.String name)
Deprecated.
use LocationService.getLocations(name)
|
java.util.List<Location> |
LocationServiceImpl.getAllLocations() |
java.util.List<Location> |
LocationServiceImpl.getAllLocations(boolean includeRetired) |
java.util.List<Location> |
EncounterServiceImpl.getLocations()
Deprecated.
use LocationService.getAllLocations()
|
java.util.List<Location> |
LocationServiceImpl.getLocations(java.lang.String nameFragment) |
java.util.List<Location> |
LocationServiceImpl.getLocations(java.lang.String nameFragment,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length)
Deprecated.
|
java.util.List<Location> |
LocationServiceImpl.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.Object> attributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length) |
java.util.List<Location> |
LocationServiceImpl.getLocationsByTag(LocationTag tag) |
java.util.List<Location> |
LocationServiceImpl.getLocationsHavingAllTags(java.util.List<LocationTag> tags) |
java.util.List<Location> |
LocationServiceImpl.getLocationsHavingAnyTag(java.util.List<LocationTag> tags) |
java.util.List<Location> |
LocationServiceImpl.getRootLocations(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
void |
AdministrationServiceImpl.createLocation(Location location)
Deprecated.
|
void |
AdministrationServiceImpl.deleteLocation(Location location)
Deprecated.
|
java.util.List<Encounter> |
EncounterServiceImpl.getEncounters(Location loc,
java.util.Date fromDate,
java.util.Date toDate)
|
java.util.List<Encounter> |
EncounterServiceImpl.getEncounters(Patient who,
Location where)
|
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,
boolean includeVoided)
|
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<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<User> providers,
boolean includeVoided)
|
java.util.List<Location> |
LocationServiceImpl.getLocations(java.lang.String nameFragment,
Location parent,
java.util.Map<LocationAttributeType,java.lang.Object> attributeValues,
boolean includeRetired,
java.lang.Integer start,
java.lang.Integer length) |
java.util.List<Obs> |
ObsServiceImpl.getObservations(Concept c,
Location loc,
java.lang.String sort,
java.lang.Integer personType,
boolean includeVoided)
Deprecated.
|
Cohort |
PatientSetServiceImpl.getPatientsHavingEncounters(EncounterType encounterType,
Location location,
Form form,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.Integer minCount,
java.lang.Integer maxCount) |
Cohort |
PatientSetServiceImpl.getPatientsHavingEncounters(java.util.List<EncounterType> encounterTypeList,
Location location,
Form form,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.Integer minCount,
java.lang.Integer maxCount) |
Cohort |
PatientSetServiceImpl.getPatientsHavingLocation(Location loc) |
Cohort |
PatientSetServiceImpl.getPatientsHavingLocation(Location loc,
PatientSetService.PatientLocationMethod method) |
void |
LocationServiceImpl.purgeLocation(Location location) |
Location |
LocationServiceImpl.retireLocation(Location location,
java.lang.String reason) |
Location |
LocationServiceImpl.saveLocation(Location location) |
Location |
LocationServiceImpl.unretireLocation(Location location) |
void |
AdministrationServiceImpl.updateLocation(Location location)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
ObsServiceImpl.getObservationCount(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
boolean includeVoidedObs) |
java.util.List<Obs> |
ObsServiceImpl.getObservations(java.util.List<Person> whom,
java.util.List<Encounter> encounters,
java.util.List<Concept> questions,
java.util.List<Concept> answers,
java.util.List<OpenmrsConstants.PERSON_TYPE> personTypes,
java.util.List<Location> locations,
java.util.List<java.lang.String> sort,
java.lang.Integer mostRecentN,
java.lang.Integer obsGroupId,
java.util.Date fromDate,
java.util.Date toDate,
boolean includeVoidedObs) |
java.util.List<PatientIdentifier> |
PatientServiceImpl.getPatientIdentifiers(java.lang.String identifier,
java.util.List<PatientIdentifierType> patientIdentifierTypes,
java.util.List<Location> locations,
java.util.List<Patient> patients,
java.lang.Boolean isPreferred) |
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 |
---|---|
Location |
EncounterPatientFilter.getLocation()
Deprecated.
|
Location |
LocationPatientFilter.getLocation()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
EncounterPatientFilter.setLocation(Location location)
Deprecated.
|
void |
LocationPatientFilter.setLocation(Location location)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Location |
RowPerObsDataExportReportObject.getLocation()
Deprecated.
|
Location |
DataExportReportObject.getLocation()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
RowPerObsDataExportReportObject.setLocation(Location location)
Deprecated.
|
void |
DataExportReportObject.setLocation(Location location)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Location |
LocationUtility.getDefaultLocation()
Gets the system default location specified as a global property.
|
static Location |
LocationUtility.getUserDefaultLocation()
Convenience method that returns the default location of the authenticated user.
|
Modifier and Type | Method and Description |
---|---|
Location |
ShortPatientFormController.getDefaultLocation() |
Modifier and Type | Method and Description |
---|---|
java.util.List<Location> |
ShortPatientFormController.getLocations() |
Constructor and Description |
---|
LocationListItem(Location location) |
Modifier and Type | Method and Description |
---|---|
Location |
LocationAndDepth.getLocation() |
Location |
FormatTag.getLocation() |
Modifier and Type | Method and Description |
---|---|
void |
LocationAndDepth.setLocation(Location location) |
void |
FormatTag.setLocation(Location location) |
Constructor and Description |
---|
LocationAndDepth(int depth,
Location location) |
Copyright © 2018 OpenMRS Inc.. All Rights Reserved.