From 32467cd50217fe72bcafbb38ddbfc14c030c64fa Mon Sep 17 00:00:00 2001 From: Emre Dincturk <74370953+mrdnctrk@users.noreply.github.com> Date: Fri, 17 Jan 2025 09:24:44 -0500 Subject: [PATCH] renamed $replace-references operation (#6617) --- .../fhir/rest/server/provider/ProviderConstants.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java index 258fffae774..80d5b1e4ba1 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java @@ -246,17 +246,17 @@ public class ProviderConstants { public static final String OPERATION_EXPORT = "$export"; /** - * Operation name for the "$replace-references" operation + * Operation name for the "$hapi.fhir.replace-references" operation */ - public static final String OPERATION_REPLACE_REFERENCES = "$replace-references"; + public static final String OPERATION_REPLACE_REFERENCES = "$hapi.fhir.replace-references"; /** - * Parameter for source reference of the "$replace-references" operation + * Parameter for source reference of the "$hapi.fhir.replace-references" operation */ public static final String OPERATION_REPLACE_REFERENCES_PARAM_SOURCE_REFERENCE_ID = "source-reference-id"; /** - * Parameter for target reference of the "$replace-references" operation + * Parameter for target reference of the "$hapi.fhir.replace-references" operation */ public static final String OPERATION_REPLACE_REFERENCES_PARAM_TARGET_REFERENCE_ID = "target-reference-id"; @@ -267,7 +267,7 @@ public class ProviderConstants { public static final String OPERATION_REPLACE_REFERENCES_RESOURCE_LIMIT = "resource-limit"; /** - * $replace-references output Parameters names + * $hapi.fhir.replace-references output Parameters names */ public static final String OPERATION_REPLACE_REFERENCES_OUTPUT_PARAM_TASK = "task";