org.camunda.bpm.engine.task
Interface Event

All Known Implementing Classes:
CommentEntity

Deprecated.

@Deprecated
public interface Event

Exposes twitter-like feeds for tasks and process instances.

Deprecation This class has been deprecated as of camunda BPM 7.1. It has been replaced with the operation log. See UserOperationLogEntry and UserOperationLogQuery.

Author:
Tom Baeyens
See Also:
TaskService#getTaskEvents(String)

Field Summary
static String ACTION_ADD_ATTACHMENT
          Deprecated. An attachment was added with the attachment name as message.
static String ACTION_ADD_COMMENT
          Deprecated. An user comment was added with the short version of the comment as message.
static String ACTION_ADD_GROUP_LINK
          Deprecated. A group identity link was added with following message parts: [0] groupId [1] identity link type (aka role)
static String ACTION_ADD_USER_LINK
          Deprecated. A user identity link was added with following message parts: [0] userId [1] identity link type (aka role)
static String ACTION_DELETE_ATTACHMENT
          Deprecated. An attachment was deleted with the attachment name as message.
static String ACTION_DELETE_GROUP_LINK
          Deprecated. A group identity link was added with following message parts: [0] groupId [1] identity link type (aka role)
static String ACTION_DELETE_USER_LINK
          Deprecated. A user identity link was added with following message parts: [0] userId [1] identity link type (aka role)
 
Method Summary
 String getAction()
          Deprecated. Indicates the type of of action and also indicates the meaning of the parts as exposed in getMessageParts()
 String getMessage()
          Deprecated. The message that can be used in case this action only has a single message part.
 List<String> getMessageParts()
          Deprecated. The meaning of the message parts is defined by the action as you can find in getAction()
 String getProcessInstanceId()
          Deprecated. reference to the process instance on which this comment was made
 String getTaskId()
          Deprecated. reference to the task on which this comment was made
 Date getTime()
          Deprecated. time and date when the user made the comment
 String getUserId()
          Deprecated. reference to the user that made the comment
 

Field Detail

ACTION_ADD_USER_LINK

static final String ACTION_ADD_USER_LINK
Deprecated. 
A user identity link was added with following message parts: [0] userId [1] identity link type (aka role)

See Also:
Constant Field Values

ACTION_DELETE_USER_LINK

static final String ACTION_DELETE_USER_LINK
Deprecated. 
A user identity link was added with following message parts: [0] userId [1] identity link type (aka role)

See Also:
Constant Field Values

ACTION_ADD_GROUP_LINK

static final String ACTION_ADD_GROUP_LINK
Deprecated. 
A group identity link was added with following message parts: [0] groupId [1] identity link type (aka role)

See Also:
Constant Field Values

ACTION_DELETE_GROUP_LINK

static final String ACTION_DELETE_GROUP_LINK
Deprecated. 
A group identity link was added with following message parts: [0] groupId [1] identity link type (aka role)

See Also:
Constant Field Values

ACTION_ADD_COMMENT

static final String ACTION_ADD_COMMENT
Deprecated. 
An user comment was added with the short version of the comment as message.

See Also:
Constant Field Values

ACTION_ADD_ATTACHMENT

static final String ACTION_ADD_ATTACHMENT
Deprecated. 
An attachment was added with the attachment name as message.

See Also:
Constant Field Values

ACTION_DELETE_ATTACHMENT

static final String ACTION_DELETE_ATTACHMENT
Deprecated. 
An attachment was deleted with the attachment name as message.

See Also:
Constant Field Values
Method Detail

getAction

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


getMessageParts

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


getMessage

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


getUserId

String getUserId()
Deprecated. 
reference to the user that made the comment


getTime

Date getTime()
Deprecated. 
time and date when the user made the comment


getTaskId

String getTaskId()
Deprecated. 
reference to the task on which this comment was made


getProcessInstanceId

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



Copyright © 2016 camunda services GmbH. All rights reserved.