001 package org.kuali.common.util.secure;
002
003 public class Result {
004
005 String encoding;
006 String command;
007 String stdin;
008 int exitValue;
009 String stdout;
010 String stderr;
011 long start;
012 long stop;
013 long elapsed;
014
015 public String getCommand() {
016 return command;
017 }
018
019 public void setCommand(String command) {
020 this.command = command;
021 }
022
023 public String getStdin() {
024 return stdin;
025 }
026
027 public void setStdin(String stdin) {
028 this.stdin = stdin;
029 }
030
031 public String getEncoding() {
032 return encoding;
033 }
034
035 public void setEncoding(String encoding) {
036 this.encoding = encoding;
037 }
038
039 public int getExitValue() {
040 return exitValue;
041 }
042
043 public void setExitValue(int exitValue) {
044 this.exitValue = exitValue;
045 }
046
047 public String getStdout() {
048 return stdout;
049 }
050
051 public void setStdout(String stdout) {
052 this.stdout = stdout;
053 }
054
055 public String getStderr() {
056 return stderr;
057 }
058
059 public void setStderr(String stderr) {
060 this.stderr = stderr;
061 }
062
063 public long getStart() {
064 return start;
065 }
066
067 public void setStart(long start) {
068 this.start = start;
069 }
070
071 public long getStop() {
072 return stop;
073 }
074
075 public void setStop(long stop) {
076 this.stop = stop;
077 }
078
079 public long getElapsed() {
080 return elapsed;
081 }
082
083 public void setElapsed(long elapsed) {
084 this.elapsed = elapsed;
085 }
086
087 }