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

网格计算

开发平台:

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.ArrayList;
  20. /**
  21.  *
  22.  * Class to store CLI Test Data
  23.  */
  24. public class CLITestData {
  25.   private String testDesc = null;
  26.   private ArrayList<TestCmd> testCommands = null;
  27.   private ArrayList<TestCmd> cleanupCommands = null;
  28.   private ArrayList<ComparatorData> comparatorData = null;
  29.   private boolean testResult = false;
  30.   
  31.   public CLITestData() {
  32.   }
  33.   /**
  34.    * Class to define Test Command. includes type of the command and command itself
  35.    * Valid types FS, DFSADMIN and MRADMIN.
  36.    */
  37.   static public class TestCmd {
  38.     public enum CommandType {
  39.         FS,
  40.         DFSADMIN,
  41.         MRADMIN
  42.     }
  43.     private final CommandType type;
  44.     private final String cmd;
  45.     public TestCmd(String str, CommandType type) {
  46.       cmd = str;
  47.       this.type = type;
  48.     }
  49.     public CommandType getType() {
  50.       return type;
  51.     }
  52.     public String getCmd() {
  53.       return cmd;
  54.     }
  55.     public String toString() {
  56.       return cmd;
  57.     }
  58.   }
  59.   
  60.   /**
  61.    * @return the testDesc
  62.    */
  63.   public String getTestDesc() {
  64.     return testDesc;
  65.   }
  66.   /**
  67.    * @param testDesc the testDesc to set
  68.    */
  69.   public void setTestDesc(String testDesc) {
  70.     this.testDesc = testDesc;
  71.   }
  72.   /**
  73.    * @return the testCommands
  74.    */
  75.   public ArrayList<TestCmd> getTestCommands() {
  76.     return testCommands;
  77.   }
  78.   /**
  79.    * @param testCommands the testCommands to set
  80.    */
  81.   public void setTestCommands(ArrayList<TestCmd> testCommands) {
  82.     this.testCommands = testCommands;
  83.   }
  84.   /**
  85.    * @return the comparatorData
  86.    */
  87.   public ArrayList<ComparatorData> getComparatorData() {
  88.     return comparatorData;
  89.   }
  90.   /**
  91.    * @param comparatorData the comparatorData to set
  92.    */
  93.   public void setComparatorData(ArrayList<ComparatorData> comparatorData) {
  94.     this.comparatorData = comparatorData;
  95.   }
  96.   /**
  97.    * @return the testResult
  98.    */
  99.   public boolean getTestResult() {
  100.     return testResult;
  101.   }
  102.   /**
  103.    * @param testResult the testResult to set
  104.    */
  105.   public void setTestResult(boolean testResult) {
  106.     this.testResult = testResult;
  107.   }
  108.   /**
  109.    * @return the cleanupCommands
  110.    */
  111.   public ArrayList<TestCmd> getCleanupCommands() {
  112.     return cleanupCommands;
  113.   }
  114.   /**
  115.    * @param cleanupCommands the cleanupCommands to set
  116.    */
  117.   public void setCleanupCommands(ArrayList<TestCmd> cleanupCommands) {
  118.     this.cleanupCommands = cleanupCommands;
  119.   }
  120. }