Class MessageEventListener

java.lang.Object
com.aquima.interactions.process.MessageEventListener
All Implemented Interfaces:
IMessageEventListener

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

    • MessageEventListener

      public MessageEventListener()
  • Method Details

    • caseUpdated

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

      public void caseCreated(IProcessCase processCase)
      Description copied from interface: IMessageEventListener
      This method is invoked when a case is created by the message event.
      Specified by:
      caseCreated in interface IMessageEventListener
      Parameters:
      processCase - The created proces case, never null.
    • getUpdatedCases

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

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