Class AbstractEntityNoRevision
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntityNoRevision
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected booleanisDeletedprotected booleanisInsertedprotected booleanisUpdatedprotected ObjectoriginalPersistentState
-
Constructor Summary
Constructors Constructor Description AbstractEntityNoRevision()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()ObjectgetOriginalPersistentState()booleanisDeleted()booleanisInserted()booleanisUpdated()voidsetDeleted(boolean isDeleted)voidsetId(String id)voidsetInserted(boolean isInserted)voidsetOriginalPersistentState(Object persistentState)voidsetUpdated(boolean isUpdated)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getIdPrefix, getPersistentState
-
-
-
-
Method Detail
-
isInserted
public boolean isInserted()
- Specified by:
isInsertedin interfaceEntity
-
setInserted
public void setInserted(boolean isInserted)
- Specified by:
setInsertedin interfaceEntity
-
setUpdated
public void setUpdated(boolean isUpdated)
- Specified by:
setUpdatedin interfaceEntity
-
setDeleted
public void setDeleted(boolean isDeleted)
- Specified by:
setDeletedin interfaceEntity
-
getOriginalPersistentState
public Object getOriginalPersistentState()
- Specified by:
getOriginalPersistentStatein interfaceEntity
-
setOriginalPersistentState
public void setOriginalPersistentState(Object persistentState)
- Specified by:
setOriginalPersistentStatein interfaceEntity
-
-