use of co.cask.cdap.api.workflow.ConditionSpecification in project cdap by caskdata.
the class DefaultWorkflowConditionConfigurer method addWorkflowConditionNode.
@Override
public void addWorkflowConditionNode(Predicate<WorkflowContext> predicate, List<WorkflowNode> ifBranch, List<WorkflowNode> elseBranch) {
ConditionSpecification spec = new DefaultConditionSpecification(predicate.getClass().getName(), predicate.getClass().getSimpleName(), "", new HashMap<String, String>(), new HashSet<String>());
currentBranch.add(new WorkflowConditionNode(spec.getName(), spec, ifBranch, elseBranch));
}
use of co.cask.cdap.api.workflow.ConditionSpecification in project cdap by caskdata.
the class DefaultWorkflowForkConfigurer method addWorkflowConditionNode.
@Override
public void addWorkflowConditionNode(Predicate<WorkflowContext> predicate, List<WorkflowNode> ifBranch, List<WorkflowNode> elseBranch) {
ConditionSpecification spec = new DefaultConditionSpecification(predicate.getClass().getName(), predicate.getClass().getSimpleName(), "", new HashMap<String, String>(), new HashSet<String>());
currentBranch.add(new WorkflowConditionNode(spec.getName(), spec, ifBranch, elseBranch));
}
use of co.cask.cdap.api.workflow.ConditionSpecification in project cdap by caskdata.
the class DefaultWorkflowConfigurer method addWorkflowConditionNode.
@Override
public void addWorkflowConditionNode(Predicate<WorkflowContext> predicate, List<WorkflowNode> ifBranch, List<WorkflowNode> elseBranch) {
ConditionSpecification spec = new DefaultConditionSpecification(predicate.getClass().getName(), predicate.getClass().getSimpleName(), "", new HashMap<String, String>(), new HashSet<String>());
nodes.add(new WorkflowConditionNode(spec.getName(), spec, ifBranch, elseBranch));
}
use of co.cask.cdap.api.workflow.ConditionSpecification in project cdap by caskdata.
the class DefaultWorkflowConfigurer method createConditionNodeWithId.
private WorkflowNode createConditionNodeWithId(WorkflowNode node) {
WorkflowConditionNode conditionNode = (WorkflowConditionNode) node;
List<WorkflowNode> ifbranch = Lists.newArrayList();
List<WorkflowNode> elsebranch = Lists.newArrayList();
ifbranch.addAll(createNodesWithId(conditionNode.getIfBranch()));
elsebranch.addAll(createNodesWithId(conditionNode.getElseBranch()));
ConditionSpecification spec = conditionNode.getConditionSpecification();
return new WorkflowConditionNode(spec.getName(), spec, ifbranch, elsebranch);
}
use of co.cask.cdap.api.workflow.ConditionSpecification in project cdap by caskdata.
the class DefaultWorkflowConfigurer method addWorkflowConditionNode.
@Override
public void addWorkflowConditionNode(Condition condition, List<WorkflowNode> ifBranch, List<WorkflowNode> elseBranch) {
Preconditions.checkArgument(condition != null, "Condition is null.");
ConditionSpecification spec = DefaultConditionConfigurer.configureCondition(condition, deployNamespace, artifactId, artifactRepository, pluginInstantiator);
nodes.add(new WorkflowConditionNode(spec.getName(), spec, ifBranch, elseBranch));
}
Aggregations