fix fhir version of Parameters for ImplementationGuideR5OperationProvider.uninstall (when using R5 and enabling ig_runtime_upload_enabled, the application won't start) (#658)
This commit is contained in:
committed by
GitHub
parent
7e57e46b06
commit
7c76755f46
@@ -35,9 +35,9 @@ public class ImplementationGuideR5OperationProvider implements IImplementationGu
|
|||||||
|
|
||||||
|
|
||||||
@Operation(name = "$uninstall", typeName = "ImplementationGuide")
|
@Operation(name = "$uninstall", typeName = "ImplementationGuide")
|
||||||
public org.hl7.fhir.r4.model.Parameters uninstall(@OperationParam(name = "name", min = 1, max = 1) String name, @OperationParam(name = "version", min = 1, max = 1) String version) {
|
public Parameters uninstall(@OperationParam(name = "name", min = 1, max = 1) String name, @OperationParam(name = "version", min = 1, max = 1) String version) {
|
||||||
|
|
||||||
packageInstallerSvc.uninstall(new PackageInstallationSpec().setName(name).setVersion(version));
|
packageInstallerSvc.uninstall(new PackageInstallationSpec().setName(name).setVersion(version));
|
||||||
return new org.hl7.fhir.r4.model.Parameters();
|
return new Parameters();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user