Class AttachmentDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.LinkableDto
-
- org.camunda.bpm.engine.rest.dto.task.AttachmentDto
-
public class AttachmentDto extends LinkableDto
-
-
Field Summary
-
Fields inherited from class org.camunda.bpm.engine.rest.dto.LinkableDto
links
-
-
Constructor Summary
Constructors Constructor Description AttachmentDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttachmentDto
fromAttachment(Attachment attachment)
Date
getCreateTime()
String
getDescription()
String
getId()
String
getName()
Date
getRemovalTime()
String
getRootProcessInstanceId()
String
getTaskId()
String
getType()
String
getUrl()
void
setCreateTime(Date createTime)
void
setDescription(String description)
void
setId(String id)
void
setName(String name)
void
setRemovalTime(Date removalTime)
void
setRootProcessInstanceId(String rootProcessInstanceId)
void
setTaskId(String taskId)
void
setType(String type)
void
setUrl(String url)
-
Methods inherited from class org.camunda.bpm.engine.rest.dto.LinkableDto
addLink, addReflexiveLink, generateLink, getLinks
-
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getTaskId
public String getTaskId()
-
setTaskId
public void setTaskId(String taskId)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getCreateTime
public Date getCreateTime()
-
setCreateTime
public void setCreateTime(Date createTime)
-
getRemovalTime
public Date getRemovalTime()
-
setRemovalTime
public void setRemovalTime(Date removalTime)
-
getRootProcessInstanceId
public String getRootProcessInstanceId()
-
setRootProcessInstanceId
public void setRootProcessInstanceId(String rootProcessInstanceId)
-
fromAttachment
public static AttachmentDto fromAttachment(Attachment attachment)
-
-