Interface AttachmentEntityManager
-
- All Superinterfaces:
EntityManager<AttachmentEntity>
- All Known Implementing Classes:
AttachmentEntityManagerImpl
public interface AttachmentEntityManager extends EntityManager<AttachmentEntity>
- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbulkDeleteAttachmentsByTaskId(Collection<String> taskIds)voiddeleteAttachmentsByTaskId(String taskId)List<AttachmentEntity>findAttachmentsByProcessInstanceId(String processInstanceId)List<AttachmentEntity>findAttachmentsByTaskId(String taskId)
-
-
-
Method Detail
-
findAttachmentsByProcessInstanceId
List<AttachmentEntity> findAttachmentsByProcessInstanceId(String processInstanceId)
-
findAttachmentsByTaskId
List<AttachmentEntity> findAttachmentsByTaskId(String taskId)
-
deleteAttachmentsByTaskId
void deleteAttachmentsByTaskId(String taskId)
-
bulkDeleteAttachmentsByTaskId
void bulkDeleteAttachmentsByTaskId(Collection<String> taskIds)
-
-