Interface ContentItemEntity
-
- All Superinterfaces:
ContentItem
,CoreContentItem
,Entity
- All Known Implementing Classes:
ContentItemEntityImpl
public interface ContentItemEntity extends CoreContentItem, Entity
- Author:
- Joram Barrez, Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getLockInfo()
List<MetadataInstanceEntity>
getMetadataInstances()
List<RenditionItemEntity>
getRenditions()
boolean
isMetadataInitialized()
boolean
isRenditionsInitialized()
void
setContentAvailable(boolean contentAvailable)
void
setContentSize(Long contentSize)
void
setCreated(Date created)
void
setLastModified(Date lastModified)
void
setLockInfo(String lockInfo)
void
setMetadataInstances(List<MetadataInstanceEntity> metadataInstances)
void
setRenditions(List<RenditionItemEntity> renditions)
-
Methods inherited from interface org.flowable.content.api.ContentItem
getContentSize, getContentStoreId, getContentStoreName, getCreated, getCreatedBy, getField, getId, getLastModified, getLastModifiedBy, getMimeType, getName, getProcessInstanceId, getScopeId, getScopeType, getTaskId, getTenantId, isContentAvailable, isProvisional, setContentStoreId, setContentStoreName, setCreatedBy, setField, setLastModifiedBy, setMimeType, setName, setProcessInstanceId, setProvisional, setScopeId, setScopeType, setTaskId, setTenantId
-
Methods inherited from interface com.flowable.core.content.api.CoreContentItem
getBaseFolderId, getDefinitionId, getDefinitionName, getMetadataValues, getParentFolderId, getState, getSubState, getSubType, getType, getVersion, getVersionInfo, getVersionParentId, isRootFolder, setBaseFolderId, setDefinitionId, setParentFolderId, setState, setSubState, setSubType, setType, setVersion, setVersionInfo, setVersionParentId
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
-
-
-
Method Detail
-
setContentAvailable
void setContentAvailable(boolean contentAvailable)
-
setContentSize
void setContentSize(Long contentSize)
-
setCreated
void setCreated(Date created)
-
setLastModified
void setLastModified(Date lastModified)
-
getLockInfo
String getLockInfo()
- Specified by:
getLockInfo
in interfaceCoreContentItem
-
setLockInfo
void setLockInfo(String lockInfo)
- Specified by:
setLockInfo
in interfaceCoreContentItem
-
getRenditions
List<RenditionItemEntity> getRenditions()
- Specified by:
getRenditions
in interfaceCoreContentItem
-
setRenditions
void setRenditions(List<RenditionItemEntity> renditions)
-
isRenditionsInitialized
boolean isRenditionsInitialized()
-
getMetadataInstances
List<MetadataInstanceEntity> getMetadataInstances()
-
setMetadataInstances
void setMetadataInstances(List<MetadataInstanceEntity> metadataInstances)
-
isMetadataInitialized
boolean isMetadataInitialized()
-
-