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 Object implements Entity
Abstract superclass for the common properties of allEntityimplementations.
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected booleanisDeletedprotected booleanisInsertedprotected booleanisUpdated
-
Constructor Summary
Constructors Constructor Description AbstractEntityNoRevision()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()booleanisDeleted()booleanisInserted()booleanisUpdated()voidsetDeleted(boolean isDeleted)voidsetId(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
-
-
-
-
Field Detail
-
id
protected String id
-
isInserted
protected boolean isInserted
-
isUpdated
protected boolean isUpdated
-
isDeleted
protected boolean isDeleted
-
-
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
-
-