Interface PropertyEntity
-
- All Superinterfaces:
Entity,HasRevision
- All Known Implementing Classes:
PropertyEntityImpl
public interface PropertyEntity extends Entity, HasRevision
- Author:
- Tom Baeyens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()StringgetName()ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.StringgetValue()voidsetName(String name)voidsetValue(String value)-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getIdPrefix, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String name)
-
getValue
String getValue()
-
setValue
void setValue(String value)
-
getPersistentState
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
-
-