use of org.hl7.fhir.r5.model.TestScript in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeTestScriptTestScriptTestComponent.
protected void composeTestScriptTestScriptTestComponent(Complex parent, String parentType, String name, TestScript.TestScriptTestComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "test", name, element, index);
if (element.hasNameElement())
composeString(t, "TestScript", "name", element.getNameElement(), -1);
if (element.hasDescriptionElement())
composeString(t, "TestScript", "description", element.getDescriptionElement(), -1);
for (int i = 0; i < element.getAction().size(); i++) composeTestScriptTestActionComponent(t, "TestScript", "action", element.getAction().get(i), i);
}
use of org.hl7.fhir.r5.model.TestScript in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeTestScriptTestScriptTeardownComponent.
protected void composeTestScriptTestScriptTeardownComponent(Complex parent, String parentType, String name, TestScript.TestScriptTeardownComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "teardown", name, element, index);
for (int i = 0; i < element.getAction().size(); i++) composeTestScriptTeardownActionComponent(t, "TestScript", "action", element.getAction().get(i), i);
}
use of org.hl7.fhir.r5.model.TestScript in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeTestScriptSetupActionAssertComponent.
protected void composeTestScriptSetupActionAssertComponent(Complex parent, String parentType, String name, TestScript.SetupActionAssertComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "assert", name, element, index);
if (element.hasLabelElement())
composeString(t, "TestScript", "label", element.getLabelElement(), -1);
if (element.hasDescriptionElement())
composeString(t, "TestScript", "description", element.getDescriptionElement(), -1);
if (element.hasDirectionElement())
composeEnum(t, "TestScript", "direction", element.getDirectionElement(), -1);
if (element.hasCompareToSourceIdElement())
composeString(t, "TestScript", "compareToSourceId", element.getCompareToSourceIdElement(), -1);
if (element.hasCompareToSourceExpressionElement())
composeString(t, "TestScript", "compareToSourceExpression", element.getCompareToSourceExpressionElement(), -1);
if (element.hasCompareToSourcePathElement())
composeString(t, "TestScript", "compareToSourcePath", element.getCompareToSourcePathElement(), -1);
if (element.hasContentTypeElement())
composeEnum(t, "TestScript", "contentType", element.getContentTypeElement(), -1);
if (element.hasExpressionElement())
composeString(t, "TestScript", "expression", element.getExpressionElement(), -1);
if (element.hasHeaderFieldElement())
composeString(t, "TestScript", "headerField", element.getHeaderFieldElement(), -1);
if (element.hasMinimumIdElement())
composeString(t, "TestScript", "minimumId", element.getMinimumIdElement(), -1);
if (element.hasNavigationLinksElement())
composeBoolean(t, "TestScript", "navigationLinks", element.getNavigationLinksElement(), -1);
if (element.hasOperatorElement())
composeEnum(t, "TestScript", "operator", element.getOperatorElement(), -1);
if (element.hasPathElement())
composeString(t, "TestScript", "path", element.getPathElement(), -1);
if (element.hasRequestMethodElement())
composeEnum(t, "TestScript", "requestMethod", element.getRequestMethodElement(), -1);
if (element.hasRequestURLElement())
composeString(t, "TestScript", "requestURL", element.getRequestURLElement(), -1);
if (element.hasResourceElement())
composeCode(t, "TestScript", "resource", element.getResourceElement(), -1);
if (element.hasResponseElement())
composeEnum(t, "TestScript", "response", element.getResponseElement(), -1);
if (element.hasResponseCodeElement())
composeString(t, "TestScript", "responseCode", element.getResponseCodeElement(), -1);
if (element.hasRule())
composeTestScriptActionAssertRuleComponent(t, "TestScript", "rule", element.getRule(), -1);
if (element.hasRuleset())
composeTestScriptActionAssertRulesetComponent(t, "TestScript", "ruleset", element.getRuleset(), -1);
if (element.hasSourceIdElement())
composeId(t, "TestScript", "sourceId", element.getSourceIdElement(), -1);
if (element.hasValidateProfileIdElement())
composeId(t, "TestScript", "validateProfileId", element.getValidateProfileIdElement(), -1);
if (element.hasValueElement())
composeString(t, "TestScript", "value", element.getValueElement(), -1);
if (element.hasWarningOnlyElement())
composeBoolean(t, "TestScript", "warningOnly", element.getWarningOnlyElement(), -1);
}
use of org.hl7.fhir.r5.model.TestScript in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeTestScriptTestScriptFixtureComponent.
protected void composeTestScriptTestScriptFixtureComponent(Complex parent, String parentType, String name, TestScript.TestScriptFixtureComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "fixture", name, element, index);
if (element.hasAutocreateElement())
composeBoolean(t, "TestScript", "autocreate", element.getAutocreateElement(), -1);
if (element.hasAutodeleteElement())
composeBoolean(t, "TestScript", "autodelete", element.getAutodeleteElement(), -1);
if (element.hasResource())
composeReference(t, "TestScript", "resource", element.getResource(), -1);
}
use of org.hl7.fhir.r5.model.TestScript in project org.hl7.fhir.core by hapifhir.
the class RdfParser method composeTestScriptTestScriptRulesetRuleParamComponent.
protected void composeTestScriptTestScriptRulesetRuleParamComponent(Complex parent, String parentType, String name, TestScript.TestScriptRulesetRuleParamComponent element, int index) {
if (element == null)
return;
Complex t;
if (Utilities.noString(parentType))
t = parent;
else {
t = parent.predicate("fhir:" + parentType + '.' + name);
}
composeBackboneElement(t, "param", name, element, index);
if (element.hasNameElement())
composeString(t, "TestScript", "name", element.getNameElement(), -1);
if (element.hasValueElement())
composeString(t, "TestScript", "value", element.getValueElement(), -1);
}
Aggregations