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.impl | |
org.openmrs.propertyeditor |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptReferenceTerm.getConceptSource() |
Modifier and Type | Method and Description |
---|---|
void |
ConceptReferenceTerm.setConceptSource(ConceptSource conceptSource) |
Constructor and Description |
---|
ConceptReferenceTerm(ConceptSource source,
String code,
String name)
Convenience constructor with the required fields filled in
|
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptService.getConceptSource(Integer i)
Return a Concept source matching the given concept source id
|
ConceptSource |
ConceptService.getConceptSourceByHL7Code(String hl7Code)
Get a ConceptSource by its hl7Code.
|
ConceptSource |
ConceptService.getConceptSourceByName(String conceptSourceName)
Lookup a ConceptSource by its name property
|
ConceptSource |
ConceptService.getConceptSourceByUniqueId(String uniqueId)
Get a ConceptSource by its unique id.
|
ConceptSource |
ConceptService.getConceptSourceByUuid(String uuid)
Get ConceptSource by its UUID
|
ConceptSource |
ConceptService.purgeConceptSource(ConceptSource cs)
Delete ConceptSource
|
ConceptSource |
ConceptService.retireConceptSource(ConceptSource cs,
String reason)
This effectively removes a concept source from the database.
|
ConceptSource |
ConceptService.saveConceptSource(ConceptSource conceptSource)
Create a new ConceptSource
|
Modifier and Type | Method and Description |
---|---|
List<ConceptSource> |
ConceptService.getAllConceptSources(boolean includeRetired)
Return a list of concept sources currently in the database Whether or not to return retired
concept sources is decided by the boolean includeRetired param
|
Modifier and Type | Method and Description |
---|---|
List<ConceptMap> |
ConceptService.getConceptMappingsToSource(ConceptSource conceptSource)
Returns a list of mappings from concepts to terms in the given reference terminology
|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource)
Gets a concept reference term with the specified code from the specified concept source
|
List<ConceptReferenceTerm> |
ConceptService.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource,
boolean includeRetired)
Gets a list of concept reference terms with the specified code from the specified concept source
|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTermByName(String name,
ConceptSource conceptSource)
Gets a concept reference term with the specified name from the specified concept source
ignoring all retired ones
|
List<ConceptReferenceTerm> |
ConceptService.getConceptReferenceTerms(String query,
ConceptSource conceptSource,
Integer start,
Integer length,
boolean includeRetired)
Finds the concept reference term in the database that have a code or name that contains the
specified search phrase.
|
Integer |
ConceptService.getCountOfConceptReferenceTerms(String query,
ConceptSource conceptSource,
boolean includeRetired)
Returns the count of concept reference terms that match the specified arguments
|
Drug |
ConceptService.getDrugByMapping(String code,
ConceptSource conceptSource,
Collection<ConceptMapType> withAnyOfTheseTypesOrOrderOfPreference)
Gets the "best" matching drug, i.e. matching the earliest ConceptMapType passed in e.g.
|
List<Drug> |
ConceptService.getDrugsByMapping(String code,
ConceptSource conceptSource,
Collection<ConceptMapType> withAnyOfTheseTypes,
boolean includeRetired)
Fetches all drugs with reference mappings to the specified concept source that match the
specified code and concept map types
|
ConceptSource |
ConceptService.purgeConceptSource(ConceptSource cs)
Delete ConceptSource
|
ConceptSource |
ConceptService.retireConceptSource(ConceptSource cs,
String reason)
This effectively removes a concept source from the database.
|
ConceptSource |
ConceptService.saveConceptSource(ConceptSource conceptSource)
Create a new ConceptSource
|
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptDAO.deleteConceptSource(ConceptSource cs) |
ConceptSource |
ConceptDAO.getConceptSource(Integer conceptSourceId) |
ConceptSource |
ConceptDAO.getConceptSourceByHL7Code(String hl7Code) |
ConceptSource |
ConceptDAO.getConceptSourceByName(String conceptSourceName) |
ConceptSource |
ConceptDAO.getConceptSourceByUniqueId(String uniqueId) |
ConceptSource |
ConceptDAO.getConceptSourceByUuid(String uuid) |
ConceptSource |
ConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
List<ConceptSource> |
ConceptDAO.getAllConceptSources(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
HibernateConceptDAO.deleteConceptSource(ConceptSource cs) |
ConceptSource |
HibernateConceptDAO.getConceptSource(Integer conceptSourceId) |
ConceptSource |
HibernateConceptDAO.getConceptSourceByHL7Code(String hl7Code) |
ConceptSource |
HibernateConceptDAO.getConceptSourceByName(String conceptSourceName) |
ConceptSource |
HibernateConceptDAO.getConceptSourceByUniqueId(String uniqueId) |
ConceptSource |
HibernateConceptDAO.getConceptSourceByUuid(String uuid) |
ConceptSource |
HibernateConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
List<ConceptSource> |
HibernateConceptDAO.getAllConceptSources(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
HibernateConceptDAO.deleteConceptSource(ConceptSource cs) |
List<ConceptMap> |
HibernateConceptDAO.getConceptMapsBySource(ConceptSource conceptSource) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource) |
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource,
boolean includeRetired) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByName(String name,
ConceptSource conceptSource) |
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTerms(String query,
ConceptSource conceptSource,
Integer start,
Integer length,
boolean includeRetired) |
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTermsBySource(ConceptSource conceptSource) |
Long |
HibernateConceptDAO.getCountOfConceptReferenceTerms(String query,
ConceptSource conceptSource,
boolean includeRetired) |
Drug |
HibernateConceptDAO.getDrugByMapping(String code,
ConceptSource conceptSource,
Collection<ConceptMapType> withAnyOfTheseTypesOrOrderOfPreference) |
List<Drug> |
HibernateConceptDAO.getDrugsByMapping(String code,
ConceptSource conceptSource,
Collection<ConceptMapType> withAnyOfTheseTypes,
boolean includeRetired) |
ConceptSource |
HibernateConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptServiceImpl.getConceptSource(Integer conceptSourceId) |
ConceptSource |
ConceptServiceImpl.getConceptSourceByHL7Code(String hl7Code) |
ConceptSource |
ConceptServiceImpl.getConceptSourceByName(String conceptSourceName) |
ConceptSource |
ConceptServiceImpl.getConceptSourceByUniqueId(String uniqueId) |
ConceptSource |
ConceptServiceImpl.getConceptSourceByUuid(String uuid) |
ConceptSource |
ConceptServiceImpl.purgeConceptSource(ConceptSource cs) |
ConceptSource |
ConceptServiceImpl.retireConceptSource(ConceptSource cs,
String reason) |
ConceptSource |
ConceptServiceImpl.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
List<ConceptSource> |
ConceptServiceImpl.getAllConceptSources(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
List<ConceptMap> |
ConceptServiceImpl.getConceptMappingsToSource(ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource) |
List<ConceptReferenceTerm> |
ConceptServiceImpl.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource,
boolean includeRetired) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByName(String name,
ConceptSource conceptSource) |
List<ConceptReferenceTerm> |
ConceptServiceImpl.getConceptReferenceTerms(String query,
ConceptSource conceptSource,
Integer start,
Integer length,
boolean includeRetired) |
Integer |
ConceptServiceImpl.getCountOfConceptReferenceTerms(String query,
ConceptSource conceptSource,
boolean includeRetired) |
Drug |
ConceptServiceImpl.getDrugByMapping(String code,
ConceptSource conceptSource,
Collection<ConceptMapType> withAnyOfTheseTypesOrOrderOfPreference) |
List<Drug> |
ConceptServiceImpl.getDrugsByMapping(String code,
ConceptSource conceptSource,
Collection<ConceptMapType> withAnyOfTheseTypes,
boolean includeRetired) |
ConceptSource |
ConceptServiceImpl.purgeConceptSource(ConceptSource cs) |
ConceptSource |
ConceptServiceImpl.retireConceptSource(ConceptSource cs,
String reason) |
ConceptSource |
ConceptServiceImpl.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
protected ConceptSource |
ConceptSourceEditor.getObjectById(Integer id) |
protected ConceptSource |
ConceptSourceEditor.getObjectByUuid(String uuid) |
Copyright © 2024 OpenMRS Inc.. All rights reserved.