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 |
Modifier and Type | Method and Description |
---|---|
ConceptReferenceTerm |
DrugReferenceMap.getConceptReferenceTerm() |
ConceptReferenceTerm |
ConceptMap.getConceptReferenceTerm() |
ConceptReferenceTerm |
ConceptReferenceTermMap.getTermA() |
ConceptReferenceTerm |
ConceptReferenceTermMap.getTermB() |
Modifier and Type | Method and Description |
---|---|
void |
DrugReferenceMap.setConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
void |
ConceptMap.setConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
void |
ConceptReferenceTermMap.setTermA(ConceptReferenceTerm termA) |
void |
ConceptReferenceTermMap.setTermB(ConceptReferenceTerm termB) |
Constructor and Description |
---|
ConceptMap(ConceptReferenceTerm conceptReferenceTerm,
ConceptMapType conceptMapType)
Convenience constructor that takes the term to be mapped to and the type of the map
|
ConceptReferenceTermMap(ConceptReferenceTerm termB,
ConceptMapType conceptMapType)
Convenience constructor that takes the term to be mapped to and the type of the map
|
DrugReferenceMap(ConceptReferenceTerm term,
ConceptMapType conceptMapType) |
Modifier and Type | Method and Description |
---|---|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTerm(Integer conceptReferenceTermId)
Gets the concept reference term with the specified concept reference term id
|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource)
Gets a concept reference term 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
|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTermByUuid(String uuid)
Gets the concept reference term with the specified uuid
|
ConceptReferenceTerm |
ConceptService.retireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm,
String retireReason)
Retiring a concept reference term essentially removes it from circulation
|
ConceptReferenceTerm |
ConceptService.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm)
Stores the specified concept reference term to the database
|
ConceptReferenceTerm |
ConceptService.unretireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm)
Marks a concept reference term that is currently retired as not retired.
|
Modifier and Type | Method and Description |
---|---|
List<ConceptReferenceTerm> |
ConceptService.getAllConceptReferenceTerms()
Gets a list of all concept reference terms saved in the database
|
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
|
List<ConceptReferenceTerm> |
ConceptService.getConceptReferenceTerms(boolean includeRetired)
Gets a list of concept reference terms saved in the database
|
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.
|
Modifier and Type | Method and Description |
---|---|
List<ConceptReferenceTermMap> |
ConceptService.getReferenceTermMappingsTo(ConceptReferenceTerm term)
Fetches all the
ConceptReferenceTermMap where the specified reference term is the
termB i.e mappings added to other terms pointing to it |
void |
ConceptService.purgeConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm)
Purges the specified concept reference term from the database
|
ConceptReferenceTerm |
ConceptService.retireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm,
String retireReason)
Retiring a concept reference term essentially removes it from circulation
|
ConceptReferenceTerm |
ConceptService.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm)
Stores the specified concept reference term to the database
|
ConceptReferenceTerm |
ConceptService.unretireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm)
Marks a concept reference term that is currently retired as not retired.
|
Modifier and Type | Method and Description |
---|---|
ConceptReferenceTerm |
ConceptDAO.getConceptReferenceTerm(Integer conceptReferenceTermId) |
ConceptReferenceTerm |
ConceptDAO.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptDAO.getConceptReferenceTermByName(String name,
ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptDAO.getConceptReferenceTermByUuid(String uuid) |
ConceptReferenceTerm |
ConceptDAO.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
Modifier and Type | Method and Description |
---|---|
List<ConceptReferenceTerm> |
ConceptDAO.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource,
boolean includeRetired) |
List<ConceptReferenceTerm> |
ConceptDAO.getConceptReferenceTerms(boolean includeRetired) |
List<ConceptReferenceTerm> |
ConceptDAO.getConceptReferenceTerms(String query,
ConceptSource conceptSource,
Integer start,
Integer length,
boolean includeRetired) |
List<ConceptReferenceTerm> |
ConceptDAO.getConceptReferenceTermsBySource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
void |
ConceptDAO.deleteConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
List<ConceptReferenceTermMap> |
ConceptDAO.getReferenceTermMappingsTo(ConceptReferenceTerm term) |
boolean |
ConceptDAO.isConceptReferenceTermInUse(ConceptReferenceTerm term)
Checks if there are any
ConceptReferenceTermMap s or ConceptMap s using the
specified term |
ConceptReferenceTerm |
ConceptDAO.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
Modifier and Type | Method and Description |
---|---|
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTerm(Integer conceptReferenceTermId) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByName(String name,
ConceptSource conceptSource) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByUuid(String uuid) |
ConceptReferenceTerm |
HibernateConceptDAO.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
Modifier and Type | Method and Description |
---|---|
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource,
boolean includeRetired) |
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTerms(boolean includeRetired) |
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTerms(String query,
ConceptSource conceptSource,
Integer start,
Integer length,
boolean includeRetired) |
List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTermsBySource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
void |
HibernateConceptDAO.deleteConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
List<ConceptReferenceTermMap> |
HibernateConceptDAO.getReferenceTermMappingsTo(ConceptReferenceTerm term) |
boolean |
HibernateConceptDAO.isConceptReferenceTermInUse(ConceptReferenceTerm term) |
ConceptReferenceTerm |
HibernateConceptDAO.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
Modifier and Type | Method and Description |
---|---|
void |
ConceptReferenceTermSaveHandler.handle(ConceptReferenceTerm conceptReferenceTerm,
User currentUser,
Date currentDate,
String other)
Sets the concept reference term as the term A for all the
ConceptReferenceTermMap s
added to it. |
Modifier and Type | Method and Description |
---|---|
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTerm(Integer conceptReferenceTermId) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByName(String name,
ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByUuid(String uuid) |
ConceptReferenceTerm |
ConceptServiceImpl.retireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm,
String retireReason) |
ConceptReferenceTerm |
ConceptServiceImpl.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
ConceptReferenceTerm |
ConceptServiceImpl.unretireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
Modifier and Type | Method and Description |
---|---|
List<ConceptReferenceTerm> |
ConceptServiceImpl.getAllConceptReferenceTerms() |
List<ConceptReferenceTerm> |
ConceptServiceImpl.getConceptReferenceTermByCode(String code,
ConceptSource conceptSource,
boolean includeRetired) |
List<ConceptReferenceTerm> |
ConceptServiceImpl.getConceptReferenceTerms(boolean includeRetired) |
List<ConceptReferenceTerm> |
ConceptServiceImpl.getConceptReferenceTerms(String query,
ConceptSource conceptSource,
Integer start,
Integer length,
boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
List<ConceptReferenceTermMap> |
ConceptServiceImpl.getReferenceTermMappingsTo(ConceptReferenceTerm term) |
void |
ConceptServiceImpl.purgeConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
ConceptReferenceTerm |
ConceptServiceImpl.retireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm,
String retireReason) |
ConceptReferenceTerm |
ConceptServiceImpl.saveConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
ConceptReferenceTerm |
ConceptServiceImpl.unretireConceptReferenceTerm(ConceptReferenceTerm conceptReferenceTerm) |
Copyright © 2024 OpenMRS Inc.. All rights reserved.