View Javadoc
1   /**
2    * Copyright 2010-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.util.secure;
17  
18  /**
19   * @deprecated
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 }