fix conversion issues that surfaced in xig
This commit is contained in:
parent
980f04557c
commit
8bb908ef5c
|
@ -212,7 +212,7 @@ public class ConceptMap10_50 {
|
|||
tgt.setValue(org.hl7.fhir.r5.model.Enumerations.ConceptMapRelationship.NOTRELATEDTO);
|
||||
break;
|
||||
default:
|
||||
tgt.setValue(org.hl7.fhir.r5.model.Enumerations.ConceptMapRelationship.NULL);
|
||||
tgt.setValue(null);
|
||||
break;
|
||||
}
|
||||
return tgt;
|
||||
|
|
|
@ -268,6 +268,9 @@ public class ConceptMap30_50 {
|
|||
case NOTRELATEDTO:
|
||||
tgt.setValue(org.hl7.fhir.dstu3.model.Enumerations.ConceptMapEquivalence.DISJOINT);
|
||||
break;
|
||||
case RELATEDTO:
|
||||
tgt.setValue(org.hl7.fhir.dstu3.model.Enumerations.ConceptMapEquivalence.RELATEDTO);
|
||||
break;
|
||||
default:
|
||||
tgt.setValue(org.hl7.fhir.dstu3.model.Enumerations.ConceptMapEquivalence.NULL);
|
||||
break;
|
||||
|
@ -310,6 +313,9 @@ public class ConceptMap30_50 {
|
|||
case DISJOINT:
|
||||
tgt.setValue(org.hl7.fhir.r5.model.Enumerations.ConceptMapRelationship.NOTRELATEDTO);
|
||||
break;
|
||||
case RELATEDTO:
|
||||
tgt.setValue(org.hl7.fhir.r5.model.Enumerations.ConceptMapRelationship.RELATEDTO);
|
||||
break;
|
||||
default:
|
||||
tgt.setValue(org.hl7.fhir.r5.model.Enumerations.ConceptMapRelationship.NULL);
|
||||
break;
|
||||
|
|
|
@ -295,7 +295,7 @@ public class ActivityDefinition40_50 {
|
|||
tgt.setValue(org.hl7.fhir.r5.model.ActivityDefinition.RequestResourceTypes.SUPPLYREQUEST);
|
||||
break;
|
||||
case TASK:
|
||||
tgt.setValue(org.hl7.fhir.r5.model.ActivityDefinition.RequestResourceTypes.NULL);
|
||||
tgt.setValue(null);
|
||||
tgt.addExtension(VersionConvertorConstants.EXT_ACTUAL_RESOURCE_NAME, new CodeType("Task"));
|
||||
break;
|
||||
case VISIONPRESCRIPTION:
|
||||
|
|
|
@ -295,7 +295,7 @@ public class ActivityDefinition43_50 {
|
|||
tgt.setValue(org.hl7.fhir.r5.model.ActivityDefinition.RequestResourceTypes.SUPPLYREQUEST);
|
||||
break;
|
||||
case TASK:
|
||||
tgt.setValue(org.hl7.fhir.r5.model.ActivityDefinition.RequestResourceTypes.NULL);
|
||||
tgt.setValue(null);
|
||||
tgt.addExtension(VersionConvertorConstants.EXT_ACTUAL_RESOURCE_NAME, new CodeType("Task"));
|
||||
break;
|
||||
case VISIONPRESCRIPTION:
|
||||
|
|
Loading…
Reference in New Issue