com.tupilabs.pbs.util.CommandOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pbs-java-api Show documentation
Show all versions of pbs-java-api Show documentation
An API written in Java for interfacing with PBS clusters
package com.tupilabs.pbs.util;
public final class CommandOutput {
private final String output;
private final String error;
public CommandOutput(String output, String error) {
super();
this.output = output;
this.error = error;
}
public String getOutput() {
return output;
}
public String getError() {
return error;
}
@Override
public String toString() {
return "CommandOutput [output=" + output + ", error=" + error + "]";
}
}