Community
Participate
Working Groups
Currently we have a servlet on /task. Only information we can get from is task details from /task/<task id> What we need for the new progress service is: * get the tasks list * remove completed tasks * cancel running task * remove one task from the list of tasks
API: GET /task - return a list of tasks for current user GET /task/id/<taskid> - return task status PUT /task/id/<taskid> put data: "Cancel: true" - cancel running task DELETE /task/id/<taskid> - remove task (success only if completed) DELETE /task - remove all completed tasks
This API is implemented, now I need to consume it on the client site.