blob: 2e9772cf3adcec98acdb1bffc7ba2c3a43f6a26d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.skynet.core.artifact.operation;
import java.util.List;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
/**
* @author Ryan D. Brooks
*/
public interface WorkflowStep {
/**
* <step> ::= <artifact operation invocation> | <workflow invocation> | <exit> | <flow
* control construct>
*
* @param artifacts
* @param monitor TODO
* @return list of artifacts that are the result of this step (if null) engine with replace with the empty list
* @throws Exception TODO
*/
public abstract List<Artifact> perform(List<Artifact> artifacts, IProgressMonitor monitor) throws IllegalArgumentException, Exception;
}