org.camunda.bpm.engine.impl.history.event
Class UserOperationLogEntryEventEntity

java.lang.Object
  extended by org.camunda.bpm.engine.impl.history.event.HistoryEvent
      extended by org.camunda.bpm.engine.impl.history.event.UserOperationLogEntryEventEntity
All Implemented Interfaces:
Serializable, UserOperationLogEntry, DbEntity

public class UserOperationLogEntryEventEntity
extends HistoryEvent
implements UserOperationLogEntry

Author:
Danny Gräf
See Also:
Serialized Form

Field Summary
protected  String deploymentId
           
protected  String entityType
           
protected  String jobDefinitionId
           
protected  String jobId
           
protected  String newValue
           
protected  String operationId
           
protected  String operationType
           
protected  String orgValue
           
protected  String property
           
protected  String taskId
           
protected  Date timestamp
           
protected  String userId
           
 
Fields inherited from class org.camunda.bpm.engine.impl.history.event.HistoryEvent
ACTIVITY_EVENT_TYPE_END, ACTIVITY_EVENT_TYPE_START, ACTIVITY_EVENT_TYPE_UPDATE, caseDefinitionId, caseDefinitionKey, caseExecutionId, caseInstanceId, eventType, executionId, FORM_PROPERTY_UPDATE, id, INCIDENT_CREATE, INCIDENT_DELETE, INCIDENT_RESOLVE, processDefinitionId, processDefinitionKey, processInstanceId, sequenceCounter, TASK_EVENT_TYPE_COMPLETE, TASK_EVENT_TYPE_CREATE, TASK_EVENT_TYPE_DELETE, TASK_EVENT_TYPE_UPDATE, VARIABLE_EVENT_TYPE_CREATE, VARIABLE_EVENT_TYPE_DELETE, VARIABLE_EVENT_TYPE_UPDATE
 
Fields inherited from interface org.camunda.bpm.engine.history.UserOperationLogEntry
ENTITY_TYPE_ATTACHMENT, ENTITY_TYPE_IDENTITY_LINK, ENTITY_TYPE_TASK, OPERATION_TYPE_ACTIVATE, OPERATION_TYPE_ACTIVATE_JOB, OPERATION_TYPE_ACTIVATE_JOB_DEFINITION, OPERATION_TYPE_ACTIVATE_PROCESS_DEFINITION, OPERATION_TYPE_ADD_ATTACHMENT, OPERATION_TYPE_ADD_GROUP_LINK, OPERATION_TYPE_ADD_USER_LINK, OPERATION_TYPE_ASSIGN, OPERATION_TYPE_CLAIM, OPERATION_TYPE_COMPLETE, OPERATION_TYPE_CREATE, OPERATION_TYPE_DELEGATE, OPERATION_TYPE_DELETE, OPERATION_TYPE_DELETE_ATTACHMENT, OPERATION_TYPE_DELETE_GROUP_LINK, OPERATION_TYPE_DELETE_USER_LINK, OPERATION_TYPE_MODIFY_PROCESS_INSTANCE, OPERATION_TYPE_MODIFY_VARIABLE, OPERATION_TYPE_REMOVE_VARIABLE, OPERATION_TYPE_RESOLVE, OPERATION_TYPE_SET_JOB_RETRIES, OPERATION_TYPE_SET_OWNER, OPERATION_TYPE_SET_PRIORITY, OPERATION_TYPE_SET_VARIABLE, OPERATION_TYPE_SUSPEND, OPERATION_TYPE_SUSPEND_JOB, OPERATION_TYPE_SUSPEND_JOB_DEFINITION, OPERATION_TYPE_SUSPEND_PROCESS_DEFINITION, OPERATION_TYPE_UPDATE
 
Constructor Summary
UserOperationLogEntryEventEntity()
           
 
Method Summary
 String getDeploymentId()
          Deployment reference
 String getEntityType()
          The type of the entity on which this operation was executed.
 String getJobDefinitionId()
          Job definition reference.
 String getJobId()
          Job instance reference.
 String getNewValue()
          The new value of the property.
 String getOperationId()
          The unique identifier of this operation.
 String getOperationType()
          Type of this operation, like create, assign, claim and so on.
 String getOrgValue()
          The original value of the property.
 String getProperty()
          The property changed by this operation.
 String getTaskId()
          Task instance reference.
 Date getTimestamp()
          Timestamp of this change.
 String getUserId()
          The User who performed the operation
 void setDeploymentId(String deploymentId)
           
 void setEntityType(String entityType)
           
 void setJobDefinitionId(String jobDefinitionId)
           
 void setJobId(String jobId)
           
 void setNewValue(String newValue)
           
 void setOperationId(String operationId)
           
 void setOperationType(String operationType)
           
 void setOrgValue(String orgValue)
           
 void setProperty(String property)
           
 void setTaskId(String taskId)
           
 void setTimestamp(Date timestamp)
           
 void setUserId(String userId)
           
 String toString()
           
 
Methods inherited from class org.camunda.bpm.engine.impl.history.event.HistoryEvent
getCaseDefinitionId, getCaseDefinitionKey, getCaseExecutionId, getCaseInstanceId, getEventType, getExecutionId, getId, getPersistentState, getProcessDefinitionId, getProcessDefinitionKey, getProcessInstanceId, getSequenceCounter, setCaseDefinitionId, setCaseDefinitionKey, setCaseExecutionId, setCaseInstanceId, setEventType, setExecutionId, setId, setProcessDefinitionId, setProcessDefinitionKey, setProcessInstanceId, setSequenceCounter
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.camunda.bpm.engine.history.UserOperationLogEntry
getCaseDefinitionId, getCaseExecutionId, getCaseInstanceId, getExecutionId, getId, getProcessDefinitionId, getProcessDefinitionKey, getProcessInstanceId
 

Field Detail

operationId

protected String operationId

operationType

protected String operationType

jobId

protected String jobId

jobDefinitionId

protected String jobDefinitionId

taskId

protected String taskId

userId

protected String userId

timestamp

protected Date timestamp

property

protected String property

orgValue

protected String orgValue

newValue

protected String newValue

entityType

protected String entityType

deploymentId

protected String deploymentId
Constructor Detail

UserOperationLogEntryEventEntity

public UserOperationLogEntryEventEntity()
Method Detail

getOperationId

public String getOperationId()
Description copied from interface: UserOperationLogEntry
The unique identifier of this operation. If an operation modifies multiple properties, multiple UserOperationLogEntry instances will be created with a common operationId. This allows grouping multiple entries which are part of a composite operation.

Specified by:
getOperationId in interface UserOperationLogEntry

getOperationType

public String getOperationType()
Description copied from interface: UserOperationLogEntry
Type of this operation, like create, assign, claim and so on.

Specified by:
getOperationType in interface UserOperationLogEntry
See Also:
and other fields beginning with OPERATION_TYPE

getTaskId

public String getTaskId()
Description copied from interface: UserOperationLogEntry
Task instance reference.

Specified by:
getTaskId in interface UserOperationLogEntry

getUserId

public String getUserId()
Description copied from interface: UserOperationLogEntry
The User who performed the operation

Specified by:
getUserId in interface UserOperationLogEntry

getTimestamp

public Date getTimestamp()
Description copied from interface: UserOperationLogEntry
Timestamp of this change.

Specified by:
getTimestamp in interface UserOperationLogEntry

getProperty

public String getProperty()
Description copied from interface: UserOperationLogEntry
The property changed by this operation.

Specified by:
getProperty in interface UserOperationLogEntry

getOrgValue

public String getOrgValue()
Description copied from interface: UserOperationLogEntry
The original value of the property.

Specified by:
getOrgValue in interface UserOperationLogEntry

getNewValue

public String getNewValue()
Description copied from interface: UserOperationLogEntry
The new value of the property.

Specified by:
getNewValue in interface UserOperationLogEntry

setOperationId

public void setOperationId(String operationId)

setOperationType

public void setOperationType(String operationType)

setTaskId

public void setTaskId(String taskId)

setUserId

public void setUserId(String userId)

setTimestamp

public void setTimestamp(Date timestamp)

setProperty

public void setProperty(String property)

setOrgValue

public void setOrgValue(String orgValue)

setNewValue

public void setNewValue(String newValue)

getEntityType

public String getEntityType()
Description copied from interface: UserOperationLogEntry
The type of the entity on which this operation was executed.

Specified by:
getEntityType in interface UserOperationLogEntry
See Also:
and other fields beginning with ENTITY_TYPE

setEntityType

public void setEntityType(String entityType)

getJobId

public String getJobId()
Description copied from interface: UserOperationLogEntry
Job instance reference.

Specified by:
getJobId in interface UserOperationLogEntry

setJobId

public void setJobId(String jobId)

getJobDefinitionId

public String getJobDefinitionId()
Description copied from interface: UserOperationLogEntry
Job definition reference.

Specified by:
getJobDefinitionId in interface UserOperationLogEntry

setJobDefinitionId

public void setJobDefinitionId(String jobDefinitionId)

getDeploymentId

public String getDeploymentId()
Description copied from interface: UserOperationLogEntry
Deployment reference

Specified by:
getDeploymentId in interface UserOperationLogEntry

setDeploymentId

public void setDeploymentId(String deploymentId)

toString

public String toString()
Overrides:
toString in class HistoryEvent


Copyright © 2016 camunda services GmbH. All rights reserved.