Java Code Examples for org.hl7.fhir.dstu3.model.ValueSet#SP_URL
The following examples show how to use
org.hl7.fhir.dstu3.model.ValueSet#SP_URL .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StructureDefinitionRepository.java From careconnect-reference-implementation with Apache License 2.0 | 4 votes |
List<StructureDefinition> search(FhirContext ctx, @OptionalParam(name = ValueSet.SP_NAME) StringParam name, @OptionalParam(name = ValueSet.SP_PUBLISHER) StringParam publisher, @OptionalParam(name = ValueSet.SP_URL) UriParam url );
Example 2
Source File: StructureDefinitionRepository.java From careconnect-reference-implementation with Apache License 2.0 | 4 votes |
List<StructureDefinitionEntity> searchEntity(FhirContext ctx, @OptionalParam(name = ValueSet.SP_NAME) StringParam name, @OptionalParam(name = ValueSet.SP_PUBLISHER) StringParam publisher, @OptionalParam(name = ValueSet.SP_URL) UriParam url );
Example 3
Source File: ValueSetRepository.java From careconnect-reference-implementation with Apache License 2.0 | 4 votes |
List<ValueSet> search (FhirContext ctx, @OptionalParam(name = ValueSet.SP_NAME) StringParam name, @OptionalParam(name = ValueSet.SP_PUBLISHER) StringParam publisher, @OptionalParam(name = ValueSet.SP_URL) UriParam url, @OptionalParam(name = ValueSet.SP_IDENTIFIER) TokenParam identifier );
Example 4
Source File: ConceptMapRepository.java From careconnect-reference-implementation with Apache License 2.0 | 4 votes |
List<ConceptMap> search (FhirContext ctx, @OptionalParam(name = ValueSet.SP_NAME) StringParam name, @OptionalParam(name = ValueSet.SP_PUBLISHER) StringParam publisher, @OptionalParam(name = ValueSet.SP_URL) UriParam url );
Example 5
Source File: ConceptMapRepository.java From careconnect-reference-implementation with Apache License 2.0 | 4 votes |
List<ConceptMapEntity> searchEntity (FhirContext ctx, @OptionalParam(name = ValueSet.SP_NAME) StringParam name, @OptionalParam(name = ValueSet.SP_PUBLISHER) StringParam publisher, @OptionalParam(name = ValueSet.SP_URL) UriParam url );