Class AbstractEntityNoRevision
- java.lang.Object
-
- org.activiti.engine.impl.persistence.entity.AbstractEntityNoRevision
-
- All Implemented Interfaces:
Entity
- Direct Known Subclasses:
CommentEntityImpl,DeploymentEntityImpl,EventLogEntryEntityImpl,HistoricDetailEntityImpl,HistoricIdentityLinkEntityImpl,HistoricScopeInstanceEntityImpl,IdentityLinkEntityImpl,ResourceEntityImpl
public abstract class AbstractEntityNoRevision extends java.lang.Object implements Entity
Abstract superclass for the common properties of allEntityimplementations.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringidprotected booleanisDeletedprotected booleanisInsertedprotected booleanisUpdated
-
Constructor Summary
Constructors Constructor Description AbstractEntityNoRevision()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()booleanisDeleted()booleanisInserted()booleanisUpdated()voidsetDeleted(boolean isDeleted)voidsetId(java.lang.String id)voidsetInserted(boolean isInserted)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.activiti.engine.impl.persistence.entity.Entity
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
-
-