Class ResourceEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.ResourceEntity
-
- All Implemented Interfaces:
Serializable,DbEntity,Resource
public class ResourceEntity extends Object implements Serializable, DbEntity, Resource
- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBytes()DategetCreateTime()StringgetDeploymentId()StringgetId()StringgetName()ObjectgetPersistentState()Returns a representation of the object, as would be stored in the database.StringgetTenantId()IntegergetType()booleanisGenerated()Indicated whether or not the resource has been generated while deploying rather than being actual part of the deployment.voidsetBytes(byte[] bytes)voidsetCreateTime(Date createTime)voidsetDeploymentId(String deploymentId)voidsetGenerated(boolean generated)voidsetId(String id)voidsetName(String name)voidsetTenantId(String tenantId)voidsetType(Integer type)StringtoString()
-
-
-
Method Detail
-
getId
public String getId()
-
setName
public void setName(String name)
-
setBytes
public void setBytes(byte[] bytes)
-
getDeploymentId
public String getDeploymentId()
- Specified by:
getDeploymentIdin interfaceResource
-
setDeploymentId
public void setDeploymentId(String deploymentId)
-
getPersistentState
public Object getPersistentState()
Description copied from interface:DbEntityReturns 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 interfaceDbEntity
-
setGenerated
public void setGenerated(boolean generated)
-
isGenerated
public boolean isGenerated()
Indicated whether or not the resource has been generated while deploying rather than being actual part of the deployment.
-
getTenantId
public String getTenantId()
-
setTenantId
public void setTenantId(String tenantId)
-
getType
public Integer getType()
-
setType
public void setType(Integer type)
-
getCreateTime
public Date getCreateTime()
-
setCreateTime
public void setCreateTime(Date createTime)
-
-