Interface RoutingTaskService
-
- All Known Implementing Classes:
RoutingTaskServiceImpl
@Deprecated public interface RoutingTaskService
Deprecated.since 5.6, use DocumentRoutingService insteadA small service adding Routing behavior to tasks.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
endTask(CoreSession session, Task task, Map<String,Object> data, String status)
Deprecated.since 5.6, use DocumentRoutingService insteadList<DocumentModel>
getWorkflowInputDocuments(CoreSession session, Task task)
Deprecated.since 5.6, use DocumentRoutingService insteadvoid
makeRoutingTasks(CoreSession session, List<Task> tasks)
Deprecated.since 5.6, use DocumentRoutingService instead
-
-
-
Method Detail
-
makeRoutingTasks
@Deprecated void makeRoutingTasks(CoreSession session, List<Task> tasks)
Deprecated.since 5.6, use DocumentRoutingService insteadMarks the tasks as Routing tasks.This allows the related documents to be adapted to
RoutingTask
.- Parameters:
session
- the sessiontasks
- the tasks
-
endTask
@Deprecated void endTask(CoreSession session, Task task, Map<String,Object> data, String status) throws DocumentRouteException
Deprecated.since 5.6, use DocumentRoutingService insteadEnds a task- Parameters:
status
- name of the button clicked to submit the task form- Throws:
DocumentRouteException
-
getWorkflowInputDocuments
@Deprecated List<DocumentModel> getWorkflowInputDocuments(CoreSession session, Task task) throws DocumentRouteException
Deprecated.since 5.6, use DocumentRoutingService insteadGets the documents following the workflow to which the given task belongs- Throws:
DocumentRouteException
-
-