blob: 16d15a88234b1e38ab5e5b3f1e63074c217c83f4 [file] [log] [blame]
/**
*
*/
package org.apache.taverna.scufl2.validation.correctness;
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
import java.util.ArrayList;
import java.util.List;
import org.apache.taverna.scufl2.api.common.NamedSet;
import org.apache.taverna.scufl2.api.common.Visitor;
import org.apache.taverna.scufl2.api.common.WorkflowBean;
import org.apache.taverna.scufl2.api.container.WorkflowBundle;
import org.apache.taverna.scufl2.api.core.Workflow;
import org.apache.taverna.scufl2.api.profiles.Profile;
/**
* @author alanrw
*
*/
public class DummyWorkflowBundle extends WorkflowBundle {
private NamedSet<Profile> profiles = null;
private NamedSet<Workflow> workflows = null;
private Workflow mainWorkflow;
private Profile mainProfile;
@Override
public boolean accept(Visitor visitor) {
if (visitor.visitEnter(this)) {
List<Iterable<? extends WorkflowBean>> children = new ArrayList<Iterable<? extends WorkflowBean>>();
if (getWorkflows() != null) {
children.add(getWorkflows());
}
if (getProfiles() != null) {
children.add(getProfiles());
}
outer: for (Iterable<? extends WorkflowBean> it : children) {
for (WorkflowBean bean : it) {
if (!bean.accept(visitor)) {
break outer;
}
}
}
}
return visitor.visitLeave(this);
}
/**
* @return the profiles
*/
@Override
public NamedSet<Profile> getProfiles() {
return profiles;
}
/**
* @param profiles the profiles to set
*/
public void setProfiles(NamedSet<Profile> profiles) {
this.profiles = profiles;
}
/**
* @return the workflows
*/
@Override
public NamedSet<Workflow> getWorkflows() {
return workflows;
}
/**
* @param workflows the workflows to set
*/
public void setWorkflows(NamedSet<Workflow> workflows) {
this.workflows = workflows;
}
/**
* @return the mainWorkflow
*/
@Override
public Workflow getMainWorkflow() {
return mainWorkflow;
}
/**
* @param mainWorkflow the mainWorkflow to set
*/
@Override
public void setMainWorkflow(Workflow mainWorkflow) {
this.mainWorkflow = mainWorkflow;
}
/**
* @return the mainProfile
*/
@Override
public Profile getMainProfile() {
return mainProfile;
}
/**
* @param mainProfile the mainProfile to set
*/
@Override
public void setMainProfile(Profile mainProfile) {
this.mainProfile = mainProfile;
}
}