blob: 97f94953bb768f41e766dce274bbfd05b79b71e7 [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.ote.core.environment.config;
import java.io.Serializable;
/**
* @author Andrew M. Finkbeiner
*/
public class TestScriptConfig implements Serializable {
private static final long serialVersionUID = 6791547338404192517L;
private final String outFile;
private final String fullScriptName;
private final String[] classPathStrs;
private final boolean isExe;
private final ScriptVersionConfig scriptVersion;
/**
* TestScriptConfig Constructor.
*
* @param classPathStrs The classPathStrs to set.
* @param fullScriptName The fullScriptName to set.
* @param outFile The outFile to set.
*/
public TestScriptConfig(String[] classPathStrs, String fullScriptName, String outFile, ScriptVersionConfig scriptVersion) {
this.fullScriptName = fullScriptName;
this.outFile = outFile;
this.isExe = false;
this.scriptVersion = scriptVersion;
this.classPathStrs = classPathStrs;
}
public String getOutFile() {
return outFile;
}
public String getFullScriptName() {
return fullScriptName;
}
public String[] getClassPathStrs() {
return classPathStrs;
}
public boolean isExe() {
return isExe;
}
public ScriptVersionConfig getScriptVersion() {
return this.scriptVersion;
}
}