/**
* Parses a task with no specific type (behaves as passthrough).
*/
public ActivityImpl parseTask(Element taskElement, ScopeImpl scope) {
ActivityImpl activity = createActivityOnScope(taskElement, scope);
activity.setActivityBehavior(new TaskActivityBehavior());
parseAsynchronousContinuation(taskElement, activity);
parseExecutionListenersOnScope(taskElement, activity);