com.tw.go.plugin.cmd.ConsoleResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of git-cmd Show documentation
Show all versions of git-cmd Show documentation
Common module that all Go CD plugins can use to poll Git repository.
package com.tw.go.plugin.cmd;
import java.util.List;
public class ConsoleResult {
private int exitCode;
private List stdOut;
private List stdErr;
public ConsoleResult(int exitCode, List stdOut, List stdErr) {
this.exitCode = exitCode;
this.stdOut = stdOut;
this.stdErr = stdErr;
}
public int exitCode() {
return exitCode;
}
public List stdOut() {
return stdOut;
}
public List stdErr() {
return stdErr;
}
}