Interface TaskAttachmentResource
-
- All Known Implementing Classes:
TaskAttachmentResourceImpl
public interface TaskAttachmentResource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachmentDtoaddAttachment(javax.ws.rs.core.UriInfo uriInfo, MultipartFormData multipartFormData)voiddeleteAttachment(String attachmentId)AttachmentDtogetAttachment(String attachmentId)InputStreamgetAttachmentData(String attachmentId)List<AttachmentDto>getAttachments()
-
-
-
Method Detail
-
getAttachments
List<AttachmentDto> getAttachments()
-
getAttachment
AttachmentDto getAttachment(String attachmentId)
-
getAttachmentData
InputStream getAttachmentData(String attachmentId)
-
deleteAttachment
void deleteAttachment(String attachmentId)
-
addAttachment
AttachmentDto addAttachment(@Context javax.ws.rs.core.UriInfo uriInfo, MultipartFormData multipartFormData)
-
-