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 java.lang.StringexecutionIdprotected intisProcessedprotected java.lang.StringlockOwnerprotected java.lang.StringlockTimeprotected longlogNumberprotected java.lang.StringprocessDefinitionIdprotected java.lang.StringprocessInstanceIdprotected java.lang.StringtaskIdprotected java.util.DatetimeStampprotected java.lang.Stringtypeprotected java.lang.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()java.lang.StringgetExecutionId()java.lang.StringgetLockOwner()java.lang.StringgetLockTime()longgetLogNumber()java.lang.ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.java.lang.StringgetProcessDefinitionId()intgetProcessed()java.lang.StringgetProcessInstanceId()java.lang.StringgetTaskId()java.util.DategetTimeStamp()java.lang.StringgetType()java.lang.StringgetUserId()voidsetData(byte[] data)voidsetExecutionId(java.lang.String executionId)voidsetLockOwner(java.lang.String lockOwner)voidsetLockTime(java.lang.String lockTime)voidsetLogNumber(long logNumber)voidsetProcessDefinitionId(java.lang.String processDefinitionId)voidsetProcessed(int isProcessed)voidsetProcessInstanceId(java.lang.String processInstanceId)voidsetTaskId(java.lang.String taskId)voidsetTimeStamp(java.util.Date timeStamp)voidsetType(java.lang.String type)voidsetUserId(java.lang.String userId)java.lang.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 java.lang.String type
-
processDefinitionId
protected java.lang.String processDefinitionId
-
processInstanceId
protected java.lang.String processInstanceId
-
executionId
protected java.lang.String executionId
-
taskId
protected java.lang.String taskId
-
timeStamp
protected java.util.Date timeStamp
-
userId
protected java.lang.String userId
-
data
protected byte[] data
-
lockOwner
protected java.lang.String lockOwner
-
lockTime
protected java.lang.String lockTime
-
isProcessed
protected int isProcessed
-
-
Method Detail
-
getPersistentState
public java.lang.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 java.lang.String getType()
- Specified by:
getTypein interfaceEventLogEntry
-
setType
public void setType(java.lang.String type)
- Specified by:
setTypein interfaceEventLogEntryEntity
-
getProcessDefinitionId
public java.lang.String getProcessDefinitionId()
- Specified by:
getProcessDefinitionIdin interfaceEventLogEntry
-
setProcessDefinitionId
public void setProcessDefinitionId(java.lang.String processDefinitionId)
- Specified by:
setProcessDefinitionIdin interfaceEventLogEntryEntity
-
getProcessInstanceId
public java.lang.String getProcessInstanceId()
- Specified by:
getProcessInstanceIdin interfaceEventLogEntry
-
setProcessInstanceId
public void setProcessInstanceId(java.lang.String processInstanceId)
- Specified by:
setProcessInstanceIdin interfaceEventLogEntryEntity
-
getExecutionId
public java.lang.String getExecutionId()
- Specified by:
getExecutionIdin interfaceEventLogEntry
-
setExecutionId
public void setExecutionId(java.lang.String executionId)
- Specified by:
setExecutionIdin interfaceEventLogEntryEntity
-
getTaskId
public java.lang.String getTaskId()
- Specified by:
getTaskIdin interfaceEventLogEntry
-
setTaskId
public void setTaskId(java.lang.String taskId)
- Specified by:
setTaskIdin interfaceEventLogEntryEntity
-
getTimeStamp
public java.util.Date getTimeStamp()
- Specified by:
getTimeStampin interfaceEventLogEntry
-
setTimeStamp
public void setTimeStamp(java.util.Date timeStamp)
- Specified by:
setTimeStampin interfaceEventLogEntryEntity
-
getUserId
public java.lang.String getUserId()
- Specified by:
getUserIdin interfaceEventLogEntry
-
setUserId
public void setUserId(java.lang.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 java.lang.String getLockOwner()
- Specified by:
getLockOwnerin interfaceEventLogEntryEntity
-
setLockOwner
public void setLockOwner(java.lang.String lockOwner)
- Specified by:
setLockOwnerin interfaceEventLogEntryEntity
-
getLockTime
public java.lang.String getLockTime()
- Specified by:
getLockTimein interfaceEventLogEntryEntity
-
setLockTime
public void setLockTime(java.lang.String lockTime)
- Specified by:
setLockTimein interfaceEventLogEntryEntity
-
getProcessed
public int getProcessed()
- Specified by:
getProcessedin interfaceEventLogEntryEntity
-
setProcessed
public void setProcessed(int isProcessed)
- Specified by:
setProcessedin interfaceEventLogEntryEntity
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-