ComparatorData.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.cli.util;
  19. import java.util.Vector;
  20. /**
  21.  *
  22.  * Class to store CLI Test Comparators Data
  23.  */
  24. public class ComparatorData {
  25.   private String expectedOutput = null;
  26.   private String actualOutput = null;
  27.   private boolean testResult = false;
  28.   private int exitCode = 0;
  29.   private String comparatorType = null;
  30.   
  31.   public ComparatorData() {
  32.   }
  33.   /**
  34.    * @return the expectedOutput
  35.    */
  36.   public String getExpectedOutput() {
  37.     return expectedOutput;
  38.   }
  39.   /**
  40.    * @param expectedOutput the expectedOutput to set
  41.    */
  42.   public void setExpectedOutput(String expectedOutput) {
  43.     this.expectedOutput = expectedOutput;
  44.   }
  45.   /**
  46.    * @return the actualOutput
  47.    */
  48.   public String getActualOutput() {
  49.     return actualOutput;
  50.   }
  51.   /**
  52.    * @param actualOutput the actualOutput to set
  53.    */
  54.   public void setActualOutput(String actualOutput) {
  55.     this.actualOutput = actualOutput;
  56.   }
  57.   /**
  58.    * @return the testResult
  59.    */
  60.   public boolean getTestResult() {
  61.     return testResult;
  62.   }
  63.   /**
  64.    * @param testResult the testResult to set
  65.    */
  66.   public void setTestResult(boolean testResult) {
  67.     this.testResult = testResult;
  68.   }
  69.   /**
  70.    * @return the exitCode
  71.    */
  72.   public int getExitCode() {
  73.     return exitCode;
  74.   }
  75.   /**
  76.    * @param exitCode the exitCode to set
  77.    */
  78.   public void setExitCode(int exitCode) {
  79.     this.exitCode = exitCode;
  80.   }
  81.   /**
  82.    * @return the comparatorType
  83.    */
  84.   public String getComparatorType() {
  85.     return comparatorType;
  86.   }
  87.   /**
  88.    * @param comparatorType the comparatorType to set
  89.    */
  90.   public void setComparatorType(String comparatorType) {
  91.     this.comparatorType = comparatorType;
  92.   }
  93. }