io.cloudslang.lang.systemtests.StepData Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* (c) Copyright 2016 Hewlett-Packard Development Company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
*******************************************************************************/
package io.cloudslang.lang.systemtests;
import java.io.Serializable;
import java.util.Map;
public class StepData {
private final String path;
private final String name;
private final Map inputs;
private final Map outputs;
private final String executableName;
private final String result;
public StepData(String path, String name, Map inputs,
Map outputs, String executableName, String result) {
this.path = path;
this.name = name;
this.inputs = inputs;
this.outputs = outputs;
this.executableName = executableName;
this.result = result;
}
public String getPath() {
return path;
}
public String getName() {
return name;
}
public Map getInputs() {
return inputs;
}
public Map getOutputs() {
return outputs;
}
public String getExecutableName() {
return executableName;
}
public String getResult() {
return result;
}
}