001/**
002 * Copyright 2010-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.common.util.secure;
017
018/**
019 * @deprecated
020 */
021@Deprecated
022public class Result {
023
024        String encoding;
025        String command;
026        String stdin;
027        int exitValue;
028        String stdout;
029        String stderr;
030        long start;
031        long stop;
032        long elapsed;
033
034        public String getCommand() {
035                return command;
036        }
037
038        public void setCommand(String command) {
039                this.command = command;
040        }
041
042        public String getStdin() {
043                return stdin;
044        }
045
046        public void setStdin(String stdin) {
047                this.stdin = stdin;
048        }
049
050        public String getEncoding() {
051                return encoding;
052        }
053
054        public void setEncoding(String encoding) {
055                this.encoding = encoding;
056        }
057
058        public int getExitValue() {
059                return exitValue;
060        }
061
062        public void setExitValue(int exitValue) {
063                this.exitValue = exitValue;
064        }
065
066        public String getStdout() {
067                return stdout;
068        }
069
070        public void setStdout(String stdout) {
071                this.stdout = stdout;
072        }
073
074        public String getStderr() {
075                return stderr;
076        }
077
078        public void setStderr(String stderr) {
079                this.stderr = stderr;
080        }
081
082        public long getStart() {
083                return start;
084        }
085
086        public void setStart(long start) {
087                this.start = start;
088        }
089
090        public long getStop() {
091                return stop;
092        }
093
094        public void setStop(long stop) {
095                this.stop = stop;
096        }
097
098        public long getElapsed() {
099                return elapsed;
100        }
101
102        public void setElapsed(long elapsed) {
103                this.elapsed = elapsed;
104        }
105
106}