Interface ProcessSummaryProviderInterface
- All Known Implementing Classes:
AbstractMergeDuplicatesTransformStep
,AbstractTableSyncTransformStep
,AbstractTransformStep
,BulkDeleteLoadStep
,BulkDeleteTransformStep
,BulkEditLoadStep
,BulkEditTransformStep
,BulkInsertLoadStep
,BulkInsertTransformStep
,ClonePeopleTransformStep
,GarbageCollectorTransformStep
,NoopTransformStep
,RunRecordScriptLoadStep
,RunRecordScriptTransformStep
,ScheduledReportSyncToScheduledJobProcess
public interface ProcessSummaryProviderInterface
Interface for a class that can provide a ProcessSummary - a list of Process Summary Lines
-
Method Summary
Modifier and TypeMethodDescriptiondefault ArrayList
<ProcessSummaryLineInterface> doGetProcessSummary
(RunBackendStepOutput runBackendStepOutput, boolean isForResultScreen) not meant to be overridden - meant to be called by framework - to make sure that all lines have their proper message picked (e.g., if they have singular/plural and past/future variants).getProcessSummary
(RunBackendStepOutput runBackendStepOutput, boolean isForResultScreen) Note - object needs to be serializable, and List isn't... so, use ArrayList?
-
Method Details
-
getProcessSummary
ArrayList<ProcessSummaryLineInterface> getProcessSummary(RunBackendStepOutput runBackendStepOutput, boolean isForResultScreen) Note - object needs to be serializable, and List isn't... so, use ArrayList? -
doGetProcessSummary
default ArrayList<ProcessSummaryLineInterface> doGetProcessSummary(RunBackendStepOutput runBackendStepOutput, boolean isForResultScreen) not meant to be overridden - meant to be called by framework - to make sure that all lines have their proper message picked (e.g., if they have singular/plural and past/future variants).
-