Show/Hide Toolbars

The following sample deletes an existing task.

Code Snippet

//for this sample it is assumed that a task record exists with a unique key String equal to uniqueKey

protected TaskRepository taskRepository;

public void test_deleteTask() throws Exception {

taskRepository.deleteTask(uniqueKey);

}