Interface Event

All Superinterfaces:
Serializable

public interface Event extends Serializable
Exposes twitter-like feeds for tasks and process instances.
Author:
Tom Baeyens
  • Field Details

    • ACTION_ADD_COMMENT

      static final String ACTION_ADD_COMMENT
      An user comment was added with the short version of the comment as message.
      See Also:
    • ACTION_ADD_ATTACHMENT

      static final String ACTION_ADD_ATTACHMENT
      An attachment was added with the attachment name as message.
      See Also:
    • ACTION_DELETE_ATTACHMENT

      static final String ACTION_DELETE_ATTACHMENT
      An attachment was deleted with the attachment name as message.
      See Also:
  • Method Details

    • getId

      String getId()
      Unique identifier for this event
    • getAction

      String getAction()
      Indicates the type of of action and also indicates the meaning of the parts as exposed in getMessageParts()
    • getMessageParts

      List<String> getMessageParts()
      The meaning of the message parts is defined by the action as you can find in getAction()
    • getMessage

      String getMessage()
      The message that can be used in case this action only has a single message part.
    • getUserId

      String getUserId()
      reference to the user that made the comment
    • getTime

      Date getTime()
      time and date when the user made the comment
    • getTaskId

      String getTaskId()
      reference to the task on which this comment was made
    • getProcessInstanceId

      String getProcessInstanceId()
      reference to the process instance on which this comment was made