All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aeontronix.commons.ProcessExecutionResult Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy