@PathVariable("entity") String entity,
@PathVariable("name") String name,
@PathVariable("document") String document,
@PathVariable("profile") String profile, Model model) {
if (helper != null) {
helper.connect(new ConnectionData(entity));
try {
Map<String, Object> map = new HashMap<String, Object>();
map.put("document", document);
helper.executeTaskAction(action, map, taskId);
} catch (InvalidTaskException e) {