+ "\nIt can be assigned to the following users:" + task.getUserOwners());
_log.info("Let's claim the task: no one else can access this task apart from user:" + user);
tempoClient.claim(id, user);
_log.info("Let's revoke the task:every one can access this task again");
tempoClient.revoke(id);
_log.info("Call setoutput from TMS Client");
tempoClient.setOutput(id, tempoClient.createMessageAsDocument(complete, "abr_output.ftl"));
_log.info("Check the output we've just set");
String outputAsXmlString = ((PATask)tempoClient.getTask(id)).getOutputAsXmlString();
_log.info(outputAsXmlString);