001/** 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the 007 * "License"); you may not use this file except in compliance 008 * with the License. You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018package org.apache.hadoop.hbase; 019 020import org.apache.yetus.audience.InterfaceAudience; 021 022// TODO move this to hbase-annotations non-test-jar 023 024/** 025 * This class defines constants for different classes of hbase limited private apis 026 */ 027@InterfaceAudience.Public 028public final class HBaseInterfaceAudience { 029 030 /** 031 * Can't create this class. 032 */ 033 private HBaseInterfaceAudience(){} 034 035 public static final String COPROC = "Coprocesssor"; 036 public static final String REPLICATION = "Replication"; 037 public static final String PHOENIX = "Phoenix"; 038 public static final String SPARK = "Spark"; 039 public static final String UNITTEST = "Unittest"; 040 041 /** 042 * Denotes class names that appear in user facing configuration files. 043 */ 044 public static final String CONFIG = "Configuration"; 045 046 /** 047 * Denotes classes used as tools (Used from cmd line). Usually, the compatibility is required 048 * for class name, and arguments. 049 */ 050 public static final String TOOLS = "Tools"; 051 052 /** 053 * Denotes classes used by hbck tool for fixing inconsistent state of HBase. 054 */ 055 public static final String HBCK = "HBCK"; 056}