Example usage for org.apache.hadoop.filecache DistributedCache CACHE_SYMLINK

List of usage examples for org.apache.hadoop.filecache DistributedCache CACHE_SYMLINK

Introduction

In this page you can find the example usage for org.apache.hadoop.filecache DistributedCache CACHE_SYMLINK.

Prototype

String CACHE_SYMLINK

To view the source code for org.apache.hadoop.filecache DistributedCache CACHE_SYMLINK.

Click Source Link

Document

Warning: #CACHE_SYMLINK is not a *public* constant.

Usage

From source file:org.apache.hcatalog.shims.HCatHadoopShims20S.java

License:Apache License

@Override
public String getPropertyName(PropertyName name) {
    switch (name) {
    case CACHE_ARCHIVES:
        return DistributedCache.CACHE_ARCHIVES;
    case CACHE_FILES:
        return DistributedCache.CACHE_FILES;
    case CACHE_SYMLINK:
        return DistributedCache.CACHE_SYMLINK;
    }/* w  w  w.  j a va2 s .c o m*/

    return "";
}