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[]
data
protected java.lang.String
executionId
protected int
isProcessed
protected java.lang.String
lockOwner
protected java.lang.String
lockTime
protected long
logNumber
protected java.lang.String
processDefinitionId
protected java.lang.String
processInstanceId
protected java.lang.String
taskId
protected java.util.Date
timeStamp
protected java.lang.String
type
protected java.lang.String
userId
-
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.String
getExecutionId()
java.lang.String
getLockOwner()
java.lang.String
getLockTime()
long
getLogNumber()
java.lang.Object
getPersistentState()
Returns a representation of the object, as would be stored in the database.java.lang.String
getProcessDefinitionId()
int
getProcessed()
java.lang.String
getProcessInstanceId()
java.lang.String
getTaskId()
java.util.Date
getTimeStamp()
java.lang.String
getType()
java.lang.String
getUserId()
void
setData(byte[] data)
void
setExecutionId(java.lang.String executionId)
void
setLockOwner(java.lang.String lockOwner)
void
setLockTime(java.lang.String lockTime)
void
setLogNumber(long logNumber)
void
setProcessDefinitionId(java.lang.String processDefinitionId)
void
setProcessed(int isProcessed)
void
setProcessInstanceId(java.lang.String processInstanceId)
void
setTaskId(java.lang.String taskId)
void
setTimeStamp(java.util.Date timeStamp)
void
setType(java.lang.String type)
void
setUserId(java.lang.String userId)
java.lang.String
toString()
-
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:Entity
Returns 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:
getPersistentState
in interfaceEntity
-
getLogNumber
public long getLogNumber()
- Specified by:
getLogNumber
in interfaceEventLogEntry
-
setLogNumber
public void setLogNumber(long logNumber)
- Specified by:
setLogNumber
in interfaceEventLogEntryEntity
-
getType
public java.lang.String getType()
- Specified by:
getType
in interfaceEventLogEntry
-
setType
public void setType(java.lang.String type)
- Specified by:
setType
in interfaceEventLogEntryEntity
-
getProcessDefinitionId
public java.lang.String getProcessDefinitionId()
- Specified by:
getProcessDefinitionId
in interfaceEventLogEntry
-
setProcessDefinitionId
public void setProcessDefinitionId(java.lang.String processDefinitionId)
- Specified by:
setProcessDefinitionId
in interfaceEventLogEntryEntity
-
getProcessInstanceId
public java.lang.String getProcessInstanceId()
- Specified by:
getProcessInstanceId
in interfaceEventLogEntry
-
setProcessInstanceId
public void setProcessInstanceId(java.lang.String processInstanceId)
- Specified by:
setProcessInstanceId
in interfaceEventLogEntryEntity
-
getExecutionId
public java.lang.String getExecutionId()
- Specified by:
getExecutionId
in interfaceEventLogEntry
-
setExecutionId
public void setExecutionId(java.lang.String executionId)
- Specified by:
setExecutionId
in interfaceEventLogEntryEntity
-
getTaskId
public java.lang.String getTaskId()
- Specified by:
getTaskId
in interfaceEventLogEntry
-
setTaskId
public void setTaskId(java.lang.String taskId)
- Specified by:
setTaskId
in interfaceEventLogEntryEntity
-
getTimeStamp
public java.util.Date getTimeStamp()
- Specified by:
getTimeStamp
in interfaceEventLogEntry
-
setTimeStamp
public void setTimeStamp(java.util.Date timeStamp)
- Specified by:
setTimeStamp
in interfaceEventLogEntryEntity
-
getUserId
public java.lang.String getUserId()
- Specified by:
getUserId
in interfaceEventLogEntry
-
setUserId
public void setUserId(java.lang.String userId)
- Specified by:
setUserId
in interfaceEventLogEntryEntity
-
getData
public byte[] getData()
- Specified by:
getData
in interfaceEventLogEntry
-
setData
public void setData(byte[] data)
- Specified by:
setData
in interfaceEventLogEntryEntity
-
getLockOwner
public java.lang.String getLockOwner()
- Specified by:
getLockOwner
in interfaceEventLogEntryEntity
-
setLockOwner
public void setLockOwner(java.lang.String lockOwner)
- Specified by:
setLockOwner
in interfaceEventLogEntryEntity
-
getLockTime
public java.lang.String getLockTime()
- Specified by:
getLockTime
in interfaceEventLogEntryEntity
-
setLockTime
public void setLockTime(java.lang.String lockTime)
- Specified by:
setLockTime
in interfaceEventLogEntryEntity
-
getProcessed
public int getProcessed()
- Specified by:
getProcessed
in interfaceEventLogEntryEntity
-
setProcessed
public void setProcessed(int isProcessed)
- Specified by:
setProcessed
in interfaceEventLogEntryEntity
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-