Interface IProcessCaseChangeListener

All Known Implementing Classes:
CaseClosedListener, ProcessCaseChangeListener

public interface IProcessCaseChangeListener
This interface allows listening to the evaluation of a message event.
Since:
9.1
Author:
A. Pragt
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    caseClosed(long caseId)
    This method is invoked when a case is closed by the message event.
    void
    caseCreated(long caseId)
    This method is invoked when a case is created by the message event.
    void
    caseUpdated(long caseId)
    This method is invoked when a case is updated by the message event.
  • Method Details

    • caseUpdated

      void caseUpdated(long caseId)
      This method is invoked when a case is updated by the message event.
      Parameters:
      caseId - The involved process case id, never null.
    • caseCreated

      void caseCreated(long caseId)
      This method is invoked when a case is created by the message event.
      Parameters:
      caseId - The created process case id, never null.
    • caseClosed

      void caseClosed(long caseId)
      This method is invoked when a case is closed by the message event.
      Parameters:
      caseId - the closed process case id.