Merge pull request #1340 from hapifhir/2023-07-gg-r5-ns-support
fix scan of naming systems
This commit is contained in:
commit
c2e4b2090f
|
@ -501,7 +501,7 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
public Map<String, NamingSystem> getNSUrlMap() {
|
public Map<String, NamingSystem> getNSUrlMap() {
|
||||||
if (systemUrlMap == null) {
|
if (systemUrlMap == null) {
|
||||||
systemUrlMap = new HashMap<>();
|
systemUrlMap = new HashMap<>();
|
||||||
List<NamingSystem> nsl = new ArrayList<>();
|
List<NamingSystem> nsl = systems.getList();
|
||||||
for (NamingSystem ns : nsl) {
|
for (NamingSystem ns : nsl) {
|
||||||
for (NamingSystemUniqueIdComponent uid : ns.getUniqueId()) {
|
for (NamingSystemUniqueIdComponent uid : ns.getUniqueId()) {
|
||||||
if (uid.getType() == NamingSystemIdentifierType.URI && uid.hasValue()) {
|
if (uid.getType() == NamingSystemIdentifierType.URI && uid.hasValue()) {
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -20,7 +20,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<guava_version>32.0.1-jre</guava_version>
|
<guava_version>32.0.1-jre</guava_version>
|
||||||
<hapi_fhir_version>6.4.1</hapi_fhir_version>
|
<hapi_fhir_version>6.4.1</hapi_fhir_version>
|
||||||
<validator_test_case_version>1.3.14</validator_test_case_version>
|
<validator_test_case_version>1.3.15-SNAPSHOT</validator_test_case_version>
|
||||||
<jackson_version>2.14.0</jackson_version>
|
<jackson_version>2.14.0</jackson_version>
|
||||||
<junit_jupiter_version>5.9.2</junit_jupiter_version>
|
<junit_jupiter_version>5.9.2</junit_jupiter_version>
|
||||||
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>
|
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>
|
||||||
|
|
Loading…
Reference in New Issue