com.ibm.itim.workflow.application

Interface WorkflowExecutionContext



  • public interface WorkflowExecutionContext
    Interface for obtaining contextual information about the currently executing workflow activity and process. An object implementing this interface is passed to a workflow specific application (see WorkflowApplication) so that the application can use workflow activity and process information in its business logic.
    See Also:
    WorkflowApplication
    • Method Detail

      • getProcessManager

        ProcessManager getProcessManager()
        Returns the manager of the process.
        Returns:
        ProcessManager managing the process.
      • getProcessVO

        WorkflowProcess getProcessVO()
        Returns the value object of the process currently executing.
        Returns:
        WorkflowProcess value object.
      • getProcessEO

        WorkflowProcessEntity getProcessEO()
        Returns the process currently executing.
        Returns:
        WorkflowProcessEntity representing the executing process.
      • getActivityVO

        Activity getActivityVO()
        Returns the value object of the activity currently executing.
        Returns:
        Activity value object.
      • getActivityEO

        ActivityEntity getActivityEO()
        Returns the activity currently executing.
        Returns:
        ActivityEntity representing the executing activity.