Interface ResourceEntity
-
- All Superinterfaces:
Entity
- All Known Implementing Classes:
ResourceEntityImpl
@Internal public interface ResourceEntity extends Entity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getBytes()StringgetDeploymentId()StringgetName()ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.booleanisGenerated()voidsetBytes(byte[] bytes)voidsetDeploymentId(String deploymentId)voidsetGenerated(boolean generated)voidsetName(String name)-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.Entity
getId, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String name)
-
getBytes
byte[] getBytes()
-
setBytes
void setBytes(byte[] bytes)
-
getDeploymentId
String getDeploymentId()
-
setDeploymentId
void setDeploymentId(String deploymentId)
-
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
-
setGenerated
void setGenerated(boolean generated)
-
isGenerated
boolean isGenerated()
-
-