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()java.lang.StringgetDeploymentId()java.lang.StringgetName()java.lang.ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.booleanisGenerated()voidsetBytes(byte[] bytes)voidsetDeploymentId(java.lang.String deploymentId)voidsetGenerated(boolean generated)voidsetName(java.lang.String name)-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.Entity
getId, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
setName
void setName(java.lang.String name)
-
getBytes
byte[] getBytes()
-
setBytes
void setBytes(byte[] bytes)
-
getDeploymentId
java.lang.String getDeploymentId()
-
setDeploymentId
void setDeploymentId(java.lang.String deploymentId)
-
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
-
setGenerated
void setGenerated(boolean generated)
-
isGenerated
boolean isGenerated()
-
-