org.mvnsearch.osquery.ProcessResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osquery-spring-boot-starter Show documentation
Show all versions of osquery-spring-boot-starter Show documentation
Spring Boot starter osquery to query system information
The newest version!
package org.mvnsearch.osquery;
/**
* process result
*
* @author linux_china
*/
public class ProcessResult {
private int exitValue;
private String output;
private String error;
public ProcessResult(int exitValue, String output, String error) {
this.exitValue = exitValue;
this.output = output;
this.error = error;
}
public int getExitValue() {
return exitValue;
}
public void setExitValue(int exitValue) {
this.exitValue = exitValue;
}
public String getOutput() {
return output;
}
public void setOutput(String output) {
this.output = output;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy