Interface IExitMappingVisitor

All Known Implementing Classes:
TaskExitVisitor

public interface IExitMappingVisitor
This visitor is used to register the mappings between a flow exit event and a task exit.
Since:
7.1
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    register(String flowExit, String taskExit)
    This method should be invoked for each exit of the flow to map it to one of the exits of the task.
  • Method Details

    • register

      void register(String flowExit, String taskExit)
      This method should be invoked for each exit of the flow to map it to one of the exits of the task.
      Parameters:
      flowExit - The name of the flow exit.
      taskExit - The name of the task exit.
      Throws:
      InitializationException - This exception is thrown when the mapping could not be initialized.