Class ProcessCaseChangeListener

java.lang.Object
com.aquima.interactions.process.impl.ProcessCaseChangeListener
All Implemented Interfaces:
IProcessCaseChangeListener

public class ProcessCaseChangeListener extends Object implements IProcessCaseChangeListener
Default implementation of the message event listener interface.
Since:
9.1
Author:
A. Pragt
  • Constructor Details

    • ProcessCaseChangeListener

      public ProcessCaseChangeListener()
  • Method Details

    • caseUpdated

      public void caseUpdated(long caseId)
      Description copied from interface: IProcessCaseChangeListener
      This method is invoked when a case is updated by the message event.
      Specified by:
      caseUpdated in interface IProcessCaseChangeListener
      Parameters:
      caseId - The involved process case id, never null.
    • caseCreated

      public void caseCreated(long caseId)
      Description copied from interface: IProcessCaseChangeListener
      This method is invoked when a case is created by the message event.
      Specified by:
      caseCreated in interface IProcessCaseChangeListener
      Parameters:
      caseId - The created process case id, never null.
    • caseClosed

      public void caseClosed(long caseId)
      Description copied from interface: IProcessCaseChangeListener
      This method is invoked when a case is closed by the message event.
      Specified by:
      caseClosed in interface IProcessCaseChangeListener
      Parameters:
      caseId - the closed process case id.
    • getAffectedCases

      public long[] getAffectedCases()
      This method will return all the affected cases
      Returns:
      An array of all affected cases, never null.
    • getUpdatedCases

      public long[] getUpdatedCases()
      This method will return all the updated cases by the message event.
      Returns:
      An array of all updated cases, never null.
    • getCreatedCases

      public long[] getCreatedCases()
      This method will return all created cases by the message event.
      Returns:
      An array of all created cases, never null.
    • getClosedCases

      public long[] getClosedCases()