You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently don't handle the 'tx-resource' parameters in our terminology server. It can be used to send needed resource to expand a value set (like a code system or another value set).
Not sure if it would be useful, though.
if (request.hasParameter("tx-resource")) {
// The client may have sent us other resources to use in the expansion (e.g. another ValueSet)for (finalvarcomponent : request.getParameters("tx-resource")) {
if (component.getResource() instanceoffinalValueSetvalueSetResource) {
finalIValidationSupport.ValueSetExpansionOutcomeresult = this.inMemoryTerminologySupport.expandValueSet(
validationSupportContext,
this.expansionOptions,
valueSetResource);
if (result == null || result.getValueSet() == null) {
returncreateErrorResponseParameters(
"Failed to expand the provided 'tx-resource' ValueSet '%s'".formatted(valueSetResource.getUrl()),
coding,
codeableConcept
);
}
// Store the expanded value set in the cachethis.cacheExpandedValueSet(cacheId, valueSetResource.getUrl(), (ValueSet) result.getValueSet());
}
}
}
The text was updated successfully, but these errors were encountered:
We currently don't handle the 'tx-resource' parameters in our terminology server. It can be used to send needed resource to expand a value set (like a code system or another value set).
Not sure if it would be useful, though.
The text was updated successfully, but these errors were encountered: