Interface AttachmentEntity
-
- All Superinterfaces:
Attachment,Entity,HasRevision
- All Known Implementing Classes:
AttachmentEntityImpl
public interface AttachmentEntity extends Attachment, Entity, HasRevision
- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteArrayEntitygetContent()DategetTime()timestamp when this attachment was createdStringgetUserId()reference to the user who created this attachment.voidsetContent(ByteArrayEntity content)voidsetContentId(String contentId)voidsetProcessInstanceId(String processInstanceId)voidsetTaskId(String taskId)voidsetTime(Date time)timestamp when this attachment was createdvoidsetType(String type)voidsetUrl(String url)voidsetUserId(String userId)-
Methods inherited from interface org.flowable.engine.task.Attachment
getContentId, getDescription, getId, getName, getProcessInstanceId, getTaskId, getType, getUrl, setDescription, setName
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Method Detail
-
setType
void setType(String type)
-
setTaskId
void setTaskId(String taskId)
-
setProcessInstanceId
void setProcessInstanceId(String processInstanceId)
-
setUrl
void setUrl(String url)
-
setContentId
void setContentId(String contentId)
-
getContent
ByteArrayEntity getContent()
-
setContent
void setContent(ByteArrayEntity content)
-
setUserId
void setUserId(String userId)
-
getUserId
String getUserId()
Description copied from interface:Attachmentreference to the user who created this attachment.- Specified by:
getUserIdin interfaceAttachment
-
getTime
Date getTime()
Description copied from interface:Attachmenttimestamp when this attachment was created- Specified by:
getTimein interfaceAttachment
-
setTime
void setTime(Date time)
Description copied from interface:Attachmenttimestamp when this attachment was created- Specified by:
setTimein interfaceAttachment
-
-