1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.secure;
17
18
19
20
21 @Deprecated
22 public class Result {
23
24 String encoding;
25 String command;
26 String stdin;
27 int exitValue;
28 String stdout;
29 String stderr;
30 long start;
31 long stop;
32 long elapsed;
33
34 public String getCommand() {
35 return command;
36 }
37
38 public void setCommand(String command) {
39 this.command = command;
40 }
41
42 public String getStdin() {
43 return stdin;
44 }
45
46 public void setStdin(String stdin) {
47 this.stdin = stdin;
48 }
49
50 public String getEncoding() {
51 return encoding;
52 }
53
54 public void setEncoding(String encoding) {
55 this.encoding = encoding;
56 }
57
58 public int getExitValue() {
59 return exitValue;
60 }
61
62 public void setExitValue(int exitValue) {
63 this.exitValue = exitValue;
64 }
65
66 public String getStdout() {
67 return stdout;
68 }
69
70 public void setStdout(String stdout) {
71 this.stdout = stdout;
72 }
73
74 public String getStderr() {
75 return stderr;
76 }
77
78 public void setStderr(String stderr) {
79 this.stderr = stderr;
80 }
81
82 public long getStart() {
83 return start;
84 }
85
86 public void setStart(long start) {
87 this.start = start;
88 }
89
90 public long getStop() {
91 return stop;
92 }
93
94 public void setStop(long stop) {
95 this.stop = stop;
96 }
97
98 public long getElapsed() {
99 return elapsed;
100 }
101
102 public void setElapsed(long elapsed) {
103 this.elapsed = elapsed;
104 }
105
106 }