Class TaskAttachmentResource

java.lang.Object
org.flowable.rest.service.api.runtime.task.TaskBaseResource
org.flowable.rest.service.api.runtime.task.TaskAttachmentResource

@RestController public class TaskAttachmentResource extends TaskBaseResource
Author:
Frederik Heremans
  • Constructor Details

    • TaskAttachmentResource

      public TaskAttachmentResource()
  • Method Details

    • getAttachment

      @GetMapping(value="/runtime/tasks/{taskId}/attachments/{attachmentId}", produces="application/json") public AttachmentResponse getAttachment(@PathVariable("taskId") String taskId, @PathVariable("attachmentId") String attachmentId)
    • deleteAttachment

      @DeleteMapping("/runtime/tasks/{taskId}/attachments/{attachmentId}") @ResponseStatus(NO_CONTENT) public void deleteAttachment(@PathVariable("taskId") String taskId, @PathVariable("attachmentId") String attachmentId)