View Javadoc

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