.. java:import:: org.motechproject.tasks.domain ActionEvent .. java:import:: org.motechproject.tasks.domain Task .. java:import:: org.motechproject.tasks.domain TaskActionInformation .. java:import:: org.motechproject.tasks.domain TriggerEvent .. java:import:: org.motechproject.tasks.ex ActionNotFoundException .. java:import:: org.motechproject.tasks.ex TriggerNotFoundException .. java:import:: java.io IOException .. java:import:: java.util List TaskService =========== .. java:package:: org.motechproject.tasks.service :noindex: .. java:type:: public interface TaskService Methods ------- deleteTask ^^^^^^^^^^ .. java:method:: void deleteTask(Long taskId) :outertype: TaskService exportTask ^^^^^^^^^^ .. java:method:: String exportTask(Long taskId) :outertype: TaskService findTasksDependentOnModule ^^^^^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: List findTasksDependentOnModule(String moduleName) :outertype: TaskService findTasksForTrigger ^^^^^^^^^^^^^^^^^^^ .. java:method:: List findTasksForTrigger(TriggerEvent trigger) :outertype: TaskService findTasksForTriggerSubject ^^^^^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: List findTasksForTriggerSubject(String subject) :outertype: TaskService findTrigger ^^^^^^^^^^^ .. java:method:: TriggerEvent findTrigger(String subject) throws TriggerNotFoundException :outertype: TaskService getActionEventFor ^^^^^^^^^^^^^^^^^ .. java:method:: ActionEvent getActionEventFor(TaskActionInformation taskActionInformation) throws ActionNotFoundException :outertype: TaskService getAllTasks ^^^^^^^^^^^ .. java:method:: List getAllTasks() :outertype: TaskService getTask ^^^^^^^ .. java:method:: Task getTask(Long taskId) :outertype: TaskService importTask ^^^^^^^^^^ .. java:method:: void importTask(String json) throws IOException :outertype: TaskService save ^^^^ .. java:method:: void save(Task task) :outertype: TaskService