Example usage for org.apache.hadoop.conf Configuration addDeprecation

List of usage examples for org.apache.hadoop.conf Configuration addDeprecation

Introduction

In this page you can find the example usage for org.apache.hadoop.conf Configuration addDeprecation.

Prototype

public static void addDeprecation(String key, String newKey, String customMessage) 

Source Link

Document

Adds the deprecated key to the global deprecation map.

Usage

From source file:org.janusgraph.hadoop.compat.h2.ImmutableConfiguration.java

License:Apache License

@Deprecated
public static void addDeprecation(String key, String[] newKeys, String customMessage) {
    Configuration.addDeprecation(key, newKeys, customMessage);
}

From source file:org.janusgraph.hadoop.compat.h2.ImmutableConfiguration.java

License:Apache License

public static void addDeprecation(String key, String newKey, String customMessage) {
    Configuration.addDeprecation(key, newKey, customMessage);
}