Class EventLogEntryEntityImpl
- java.lang.Object
-
- org.activiti.engine.impl.persistence.entity.AbstractEntityNoRevision
-
- org.activiti.engine.impl.persistence.entity.EventLogEntryEntityImpl
-
- All Implemented Interfaces:
EventLogEntry,Entity,EventLogEntryEntity
public class EventLogEntryEntityImpl extends AbstractEntityNoRevision implements EventLogEntryEntity
An event log entry can only be inserted (and maybe deleted).
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]dataprotected StringexecutionIdprotected intisProcessedprotected StringlockOwnerprotected StringlockTimeprotected longlogNumberprotected StringprocessDefinitionIdprotected StringprocessInstanceIdprotected StringtaskIdprotected DatetimeStampprotected Stringtypeprotected StringuserId-
Fields inherited from class org.activiti.engine.impl.persistence.entity.AbstractEntityNoRevision
id, isDeleted, isInserted, isUpdated
-
-
Constructor Summary
Constructors Constructor Description EventLogEntryEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getData()StringgetExecutionId()StringgetLockOwner()StringgetLockTime()longgetLogNumber()ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.StringgetProcessDefinitionId()intgetProcessed()StringgetProcessInstanceId()StringgetTaskId()DategetTimeStamp()StringgetType()StringgetUserId()voidsetData(byte[] data)voidsetExecutionId(String executionId)voidsetLockOwner(String lockOwner)voidsetLockTime(String lockTime)voidsetLogNumber(long logNumber)voidsetProcessDefinitionId(String processDefinitionId)voidsetProcessed(int isProcessed)voidsetProcessInstanceId(String processInstanceId)voidsetTaskId(String taskId)voidsetTimeStamp(Date timeStamp)voidsetType(String type)voidsetUserId(String userId)StringtoString()-
Methods inherited from class org.activiti.engine.impl.persistence.entity.AbstractEntityNoRevision
getId, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.Entity
getId, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
-
-
-
Field Detail
-
logNumber
protected long logNumber
-
type
protected String type
-
processDefinitionId
protected String processDefinitionId
-
processInstanceId
protected String processInstanceId
-
executionId
protected String executionId
-
taskId
protected String taskId
-
timeStamp
protected Date timeStamp
-
userId
protected String userId
-
data
protected byte[] data
-
lockOwner
protected String lockOwner
-
lockTime
protected String lockTime
-
isProcessed
protected int isProcessed
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
Description copied from interface:EntityReturns a representation of the object, as would be stored in the database. Used when deciding if updates have occurred to the object or not since it was last loaded.- Specified by:
getPersistentStatein interfaceEntity
-
getLogNumber
public long getLogNumber()
- Specified by:
getLogNumberin interfaceEventLogEntry
-
setLogNumber
public void setLogNumber(long logNumber)
- Specified by:
setLogNumberin interfaceEventLogEntryEntity
-
getType
public String getType()
- Specified by:
getTypein interfaceEventLogEntry
-
setType
public void setType(String type)
- Specified by:
setTypein interfaceEventLogEntryEntity
-
getProcessDefinitionId
public String getProcessDefinitionId()
- Specified by:
getProcessDefinitionIdin interfaceEventLogEntry
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
- Specified by:
setProcessDefinitionIdin interfaceEventLogEntryEntity
-
getProcessInstanceId
public String getProcessInstanceId()
- Specified by:
getProcessInstanceIdin interfaceEventLogEntry
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
- Specified by:
setProcessInstanceIdin interfaceEventLogEntryEntity
-
getExecutionId
public String getExecutionId()
- Specified by:
getExecutionIdin interfaceEventLogEntry
-
setExecutionId
public void setExecutionId(String executionId)
- Specified by:
setExecutionIdin interfaceEventLogEntryEntity
-
getTaskId
public String getTaskId()
- Specified by:
getTaskIdin interfaceEventLogEntry
-
setTaskId
public void setTaskId(String taskId)
- Specified by:
setTaskIdin interfaceEventLogEntryEntity
-
getTimeStamp
public Date getTimeStamp()
- Specified by:
getTimeStampin interfaceEventLogEntry
-
setTimeStamp
public void setTimeStamp(Date timeStamp)
- Specified by:
setTimeStampin interfaceEventLogEntryEntity
-
getUserId
public String getUserId()
- Specified by:
getUserIdin interfaceEventLogEntry
-
setUserId
public void setUserId(String userId)
- Specified by:
setUserIdin interfaceEventLogEntryEntity
-
getData
public byte[] getData()
- Specified by:
getDatain interfaceEventLogEntry
-
setData
public void setData(byte[] data)
- Specified by:
setDatain interfaceEventLogEntryEntity
-
getLockOwner
public String getLockOwner()
- Specified by:
getLockOwnerin interfaceEventLogEntryEntity
-
setLockOwner
public void setLockOwner(String lockOwner)
- Specified by:
setLockOwnerin interfaceEventLogEntryEntity
-
getLockTime
public String getLockTime()
- Specified by:
getLockTimein interfaceEventLogEntryEntity
-
setLockTime
public void setLockTime(String lockTime)
- Specified by:
setLockTimein interfaceEventLogEntryEntity
-
getProcessed
public int getProcessed()
- Specified by:
getProcessedin interfaceEventLogEntryEntity
-
setProcessed
public void setProcessed(int isProcessed)
- Specified by:
setProcessedin interfaceEventLogEntryEntity
-
-