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

io.github.fvarrui.javapackager.utils.ExecutionResult Maven / Gradle / Ivy

Go to download

Hybrid Maven/Gradle plugin to package Java applications as native Windows, Mac OS X or GNU/Linux executables and create installers for them

The newest version!
package io.github.fvarrui.javapackager.utils;

/**
 * Command execution result 
 */
public class ExecutionResult {

	private String commandLine;
	private int exitCode;
	private String output;
	private String error;

	public String getCommandLine() {
		return commandLine;
	}

	public void setCommandLine(String commandLine) {
		this.commandLine = commandLine;
	}

	public int getExitCode() {
		return exitCode;
	}

	public void setExitCode(int exitCode) {
		this.exitCode = exitCode;
	}

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

	@Override
	public String toString() {
		return "ExecutionResult [commandLine=" + commandLine + ", exitCode=" + exitCode + ", output=" + output
				+ ", error=" + error + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy