Package org.apache.hadoop.tools.rumen.anonymization

Examples of org.apache.hadoop.tools.rumen.anonymization.WordList


 
  @Override
  public final String getAnonymizedValue(StatePool statePool,
                                         Configuration conf) {
    if (needsAnonymization(conf)) {
      WordList state = (WordList) statePool.getState(getClass());
      if (state == null) {
        state = new WordList(getPrefix());
        statePool.addState(getClass(), state);
      }
      return anonymize(getValue(), state);
    } else {
      return getValue();
View Full Code Here

TOP

Related Classes of org.apache.hadoop.tools.rumen.anonymization.WordList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.