Interface SplitStepDefinition._FinalStage

    • Method Detail

      • config

        SplitStepDefinition._FinalStage config​(java.util.Optional<SplitStepDefinitionConfig> config)

        Optional on create/update. Required before the workflow can be deployed. Omitted in responses when the step is not yet configured.

        When present, must contain exactly one of splitter (saved processor reference) or splitterConfig (inline configuration) — not both.

        The next[].classificationId values must match split classification id values (not type strings) from the splitter's configuration — the referenced version's config for a saved reference, or the inline splitClassifications array for an inline config. For example, if the splitter defines { "id": "cls_receipt", "type": "receipt" }, use "cls_receipt" as the classificationId.

        See the Split step docs.

      • next

        SplitStepDefinition._FinalStage next​(java.util.Optional<java.util.List<ClassificationNextEntry>> next)

        Can only be set when config is present. Each entry must include a classificationId matching a split classification id from the splitter's configuration (saved or inline). Use the classification's stable id (e.g. "cls_receipt"), not the type string.

        See the Split step docs.