com.aeontronix.commons.ProcessExecutionResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeon-commons-core Show documentation
Show all versions of aeon-commons-core Show documentation
Various utility classes. Except for very rare exceptions (annotation-based validation) this will not
require any dependencies beyond the JRE
The newest version!
/*
* Copyright (c) 2014 Kloudtek Ltd
*/
package com.aeontronix.commons;
/**
* Result of a process execution
*/
public class ProcessExecutionResult {
private Process process;
private String stdout;
public ProcessExecutionResult(Process process, String stdout) {
this.process = process;
this.stdout = stdout;
}
public Process getProcess() {
return process;
}
public void setProcess(Process process) {
this.process = process;
}
public String getStdout() {
return stdout;
}
public void setStdout(String stdout) {
this.stdout = stdout;
}
}