From 9dc6f4ccf8e2d5d102629d2ec0b921c0740b8dfb Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Fri, 19 May 2023 08:36:19 -0500 Subject: [PATCH] Add DEFAULT_PREVIEW_MESSAGE_PREFIX --- .../etl/streamedwithfrontend/StreamedETLWithFrontendProcess.java | 1 + 1 file changed, 1 insertion(+) diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/etl/streamedwithfrontend/StreamedETLWithFrontendProcess.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/etl/streamedwithfrontend/StreamedETLWithFrontendProcess.java index 3459b0ac..7b31440d 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/etl/streamedwithfrontend/StreamedETLWithFrontendProcess.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/processes/implementations/etl/streamedwithfrontend/StreamedETLWithFrontendProcess.java @@ -91,6 +91,7 @@ public class StreamedETLWithFrontendProcess public static final String DEFAULT_PREVIEW_MESSAGE_FOR_UPDATE = "This is a preview of the records that will be updated."; public static final String DEFAULT_PREVIEW_MESSAGE_FOR_INSERT_OR_UPDATE = "This is a preview of the records that will be inserted or updated."; public static final String DEFAULT_PREVIEW_MESSAGE_FOR_DELETE = "This is a preview of the records that will be deleted."; + public static final String DEFAULT_PREVIEW_MESSAGE_PREFIX = "This is a preview of the records that will be "; public static final String FIELD_PREVIEW_MESSAGE = "previewMessage"; public static final String FIELD_TRANSACTION_LEVEL = "transactionLevel";