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 |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptReferenceTerm.getConceptSource() |
ConceptSource |
ConceptMap.getSource()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
ConceptReferenceTerm.setConceptSource(ConceptSource conceptSource) |
void |
ConceptMap.setSource(ConceptSource source)
Deprecated.
|
Constructor and Description |
---|
ConceptReferenceTerm(ConceptSource source,
java.lang.String code,
java.lang.String name)
Convenience constructor with the required fields filled in
|
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptService.getConceptSource(java.lang.Integer i)
Return a Concept source matching the given concept source id
|
ConceptSource |
ConceptService.getConceptSourceByName(java.lang.String conceptSourceName)
Lookup a ConceptSource by its name property
|
ConceptSource |
ConceptService.getConceptSourceByUuid(java.lang.String uuid)
Get ConceptSource by its UUID
|
ConceptSource |
ConceptService.purgeConceptSource(ConceptSource cs)
Delete ConceptSource
|
ConceptSource |
ConceptService.retireConceptSource(ConceptSource cs,
java.lang.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 |
---|---|
java.util.List<ConceptSource> |
ConceptService.getAllConceptSources()
Return a list of concept sources currently in the database that are not voided
|
Modifier and Type | Method and Description |
---|---|
java.util.List<ConceptMap> |
ConceptService.getConceptMappingsToSource(ConceptSource conceptSource)
Returns a list of mappings from concepts to terms in the given reference terminology
|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTermByCode(java.lang.String code,
ConceptSource conceptSource)
Gets a concept reference term with the specified code from the specified concept source
|
ConceptReferenceTerm |
ConceptService.getConceptReferenceTermByName(java.lang.String name,
ConceptSource conceptSource)
Gets a concept reference term with the specified name from the specified concept source
ignoring all retired ones
|
java.util.List<ConceptReferenceTerm> |
ConceptService.getConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
java.lang.Integer start,
java.lang.Integer length,
boolean includeRetired)
Finds the concept reference term in the database that have a code or name that contains the
specified search phrase.
|
java.util.List<ConceptMap> |
ConceptService.getConceptsByConceptSource(ConceptSource conceptSource)
Deprecated.
as of version 1.9, use
#getConceptMapsBySource(ConceptSource)) |
java.lang.Integer |
ConceptService.getCountOfConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
boolean includeRetired)
Returns the count of concept reference terms that match the specified arguments
|
ConceptSource |
ConceptService.purgeConceptSource(ConceptSource cs)
Delete ConceptSource
|
ConceptSource |
ConceptService.retireConceptSource(ConceptSource cs,
java.lang.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(java.lang.Integer conceptSourceId) |
ConceptSource |
ConceptDAO.getConceptSourceByName(java.lang.String conceptSourceName) |
ConceptSource |
ConceptDAO.getConceptSourceByUuid(java.lang.String uuid) |
ConceptSource |
ConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
java.util.List<ConceptSource> |
ConceptDAO.getAllConceptSources() |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptDAO.deleteConceptSource(ConceptSource cs) |
java.util.List<ConceptMap> |
ConceptDAO.getConceptMapsBySource(ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptDAO.getConceptReferenceTermByCode(java.lang.String code,
ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptDAO.getConceptReferenceTermByName(java.lang.String name,
ConceptSource conceptSource) |
java.util.List<ConceptReferenceTerm> |
ConceptDAO.getConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
java.lang.Integer start,
java.lang.Integer length,
boolean includeRetired) |
java.util.List<ConceptReferenceTerm> |
ConceptDAO.getConceptReferenceTermsBySource(ConceptSource conceptSource) |
java.lang.Long |
ConceptDAO.getCountOfConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
boolean includeRetired) |
ConceptSource |
ConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
HibernateConceptDAO.deleteConceptSource(ConceptSource cs) |
ConceptSource |
HibernateConceptDAO.getConceptSource(java.lang.Integer conceptSourceId) |
ConceptSource |
HibernateConceptDAO.getConceptSourceByName(java.lang.String conceptSourceName) |
ConceptSource |
HibernateConceptDAO.getConceptSourceByUuid(java.lang.String uuid) |
ConceptSource |
HibernateConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
java.util.List<ConceptSource> |
HibernateConceptDAO.getAllConceptSources() |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
HibernateConceptDAO.deleteConceptSource(ConceptSource cs) |
java.util.List<ConceptMap> |
HibernateConceptDAO.getConceptMapsBySource(ConceptSource conceptSource) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByCode(java.lang.String code,
ConceptSource conceptSource) |
ConceptReferenceTerm |
HibernateConceptDAO.getConceptReferenceTermByName(java.lang.String name,
ConceptSource conceptSource) |
java.util.List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
java.lang.Integer start,
java.lang.Integer length,
boolean includeRetired) |
java.util.List<ConceptReferenceTerm> |
HibernateConceptDAO.getConceptReferenceTermsBySource(ConceptSource conceptSource) |
java.lang.Long |
HibernateConceptDAO.getCountOfConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
boolean includeRetired) |
ConceptSource |
HibernateConceptDAO.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
ConceptSource |
ConceptServiceImpl.getConceptSource(java.lang.Integer conceptSourceId) |
ConceptSource |
ConceptServiceImpl.getConceptSourceByName(java.lang.String conceptSourceName) |
ConceptSource |
ConceptServiceImpl.getConceptSourceByUuid(java.lang.String uuid) |
ConceptSource |
ConceptServiceImpl.purgeConceptSource(ConceptSource cs) |
ConceptSource |
ConceptServiceImpl.retireConceptSource(ConceptSource cs,
java.lang.String reason) |
ConceptSource |
ConceptServiceImpl.saveConceptSource(ConceptSource conceptSource) |
Modifier and Type | Method and Description |
---|---|
java.util.List<ConceptSource> |
ConceptServiceImpl.getAllConceptSources() |
Modifier and Type | Method and Description |
---|---|
java.util.List<ConceptMap> |
ConceptServiceImpl.getConceptMappingsToSource(ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByCode(java.lang.String code,
ConceptSource conceptSource) |
ConceptReferenceTerm |
ConceptServiceImpl.getConceptReferenceTermByName(java.lang.String name,
ConceptSource conceptSource) |
java.util.List<ConceptReferenceTerm> |
ConceptServiceImpl.getConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
java.lang.Integer start,
java.lang.Integer length,
boolean includeRetired) |
java.util.List<ConceptMap> |
ConceptServiceImpl.getConceptsByConceptSource(ConceptSource conceptSource) |
java.lang.Integer |
ConceptServiceImpl.getCountOfConceptReferenceTerms(java.lang.String query,
ConceptSource conceptSource,
boolean includeRetired) |
ConceptSource |
ConceptServiceImpl.purgeConceptSource(ConceptSource cs) |
ConceptSource |
ConceptServiceImpl.retireConceptSource(ConceptSource cs,
java.lang.String reason) |
ConceptSource |
ConceptServiceImpl.saveConceptSource(ConceptSource conceptSource) |
Copyright © 2018 OpenMRS Inc.. All Rights Reserved.