All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.hbase.security.access.CodeToClassAndBackFor96Migration Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta-1
Show newest version
/**
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.hadoop.hbase.security.access;

import java.util.*;

import org.apache.hadoop.hbase.classification.InterfaceAudience;

/**
 * A Static Interface.
 * Instead of having this code in the the HbaseMapWritable code, where it
 * blocks the possibility of altering the variables and changing their types,
 * it is put here in this static interface where the static final Maps are
 * loaded one time. Only byte[] and Cell are supported at this time.
 * @deprecated  In place until we come up on 0.96 and then it can be removed
 * along with {@link HbaseObjectWritableFor96Migration}; needed to read
 * pre-0.96 TablePermissions.
 */
@Deprecated
@InterfaceAudience.Private
interface CodeToClassAndBackFor96Migration {
  /**
   * Static map that contains mapping from code to class
   */
  Map> CODE_TO_CLASS =
    new HashMap>();

  /**
   * Static map that contains mapping from class to code
   */
  Map, Byte> CLASS_TO_CODE =
    new HashMap, Byte>();

  /**
   * Class list for supported classes
   */
  Class[] classList = {byte[].class};

  /**
   * The static loader that is used instead of the static constructor in
   * HbaseMapWritable.
   */
  InternalStaticLoader sl =
    new InternalStaticLoader(classList, CODE_TO_CLASS, CLASS_TO_CODE);

  /**
   * Class that loads the static maps with their values.
   */
  class InternalStaticLoader{
    InternalStaticLoader(Class[] classList,
        Map> CODE_TO_CLASS, Map, Byte> CLASS_TO_CODE){
      byte code = 1;
      for(int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy