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