1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.maven.plugins.jenkins.context;
17
18 import java.util.List;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 public class ProcessResult {
37 ProcessContext context;
38 int exitValue;
39 String output;
40 List<String> outputLines;
41 long start;
42 long stop;
43 long elapsed;
44
45 public ProcessContext getContext() {
46 return context;
47 }
48
49 public void setContext(ProcessContext context) {
50 this.context = context;
51 }
52
53 public int getExitValue() {
54 return exitValue;
55 }
56
57 public void setExitValue(int exitValue) {
58 this.exitValue = exitValue;
59 }
60
61 public List<String> getOutputLines() {
62 return outputLines;
63 }
64
65 public void setOutputLines(List<String> outputLines) {
66 this.outputLines = outputLines;
67 }
68
69 public String getOutput() {
70 return output;
71 }
72
73 public void setOutput(String output) {
74 this.output = output;
75 }
76
77 public long getStart() {
78 return start;
79 }
80
81 public void setStart(long start) {
82 this.start = start;
83 }
84
85 public long getStop() {
86 return stop;
87 }
88
89 public void setStop(long stop) {
90 this.stop = stop;
91 }
92
93 public long getElapsed() {
94 return elapsed;
95 }
96
97 public void setElapsed(long elapsed) {
98 this.elapsed = elapsed;
99 }
100 }