
net.dongliu.jpackage.util.ProcessResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpackage-maven-plugin Show documentation
Show all versions of jpackage-maven-plugin Show documentation
Easy ways to create JPackage Images
The newest version!
package net.dongliu.jpackage.util;
/**
* @author dongliu
*/
public class ProcessResult {
private final int exitCode;
private final String stdout;
private final String stderr;
public ProcessResult(int exitCode, String stdout, String stderr) {
this.exitCode = exitCode;
this.stdout = stdout;
this.stderr = stderr;
}
public int exitCode() {
return exitCode;
}
public String stdout() {
return stdout;
}
public String stderr() {
return stderr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy