com.consol.citrus.container.AbstractActionContainer Maven / Gradle / Ivy
/*
* Copyright 2006-2010 the original author or authors.
*
* Licensed 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.
*/
package com.consol.citrus.container;
import com.consol.citrus.TestAction;
import com.consol.citrus.actions.AbstractTestAction;
import java.util.ArrayList;
import java.util.List;
/**
* Abstract base class for all containers holding several embedded test actions.
*
* @author Christoph Deppisch
*/
public abstract class AbstractActionContainer extends AbstractTestAction implements TestActionContainer {
/** List of nested actions */
protected List actions = new ArrayList();
/** Last executed action for error reporting reasons */
private TestAction lastExecutedAction;
@Override
public AbstractActionContainer setActions(List actions) {
this. actions = actions;
return this;
}
@Override
public List getActions() {
return actions;
}
@Override
public long getActionCount() {
return actions.size();
}
@Override
public AbstractActionContainer addTestAction(TestAction action) {
actions.add(action);
return this;
}
@Override
public int getActionIndex(TestAction action) {
return actions.indexOf(action);
}
@Override
public TestAction getLastExecutedAction() {
return lastExecutedAction;
}
@Override
public void setLastExecutedAction(TestAction action) {
this.lastExecutedAction = action;
}
@Override
public TestAction getTestAction(int index) {
return actions.get(index);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy