public void addComment(String taskId, String processInstance, String message) {
createComment(taskId, processInstance, message);
}
public Comment createComment(String taskId, String processInstance, String message) {
return commandExecutor.execute(new AddCommentCmd(taskId, processInstance, message));
}