org.jbpm.task.api
Interface TaskContentService
- All Known Implementing Classes:
- TaskContentServiceImpl
public interface TaskContentService
The Task Content Service is intended to handle
the information which is stored inside a Task.
The information inside the Task Content represents
the information required for the Task to be completed.
This information can be divided into:
- Task Input: The data used by the Human Actor
as a context to do the job
- Task Output: The data entered by the Human Actor
as the result of the work that is being done.
addContent
long addContent(long taskId,
Content content)
addContent
long addContent(long taskId,
Map<String,Object> params)
deleteContent
void deleteContent(long taskId,
long contentId)
getAllContentByTaskId
List<Content> getAllContentByTaskId(long taskId)
getContentById
Content getContentById(long contentId)
Copyright © 2001-2013 JBoss by Red Hat. All Rights Reserved.