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

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

/*
 * 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 - 2025 Weber Informatics LLC | Privacy Policy