Package org.apache.hadoop.gateway.audit.api

Examples of org.apache.hadoop.gateway.audit.api.Auditor


  }
 
  @Override
  public synchronized Auditor getAuditor( String auditorName, String componentName, String serviceName ) {
    String key = auditorName + componentName + serviceName;
    Auditor auditor = auditors.get( key );
    if( auditor == null ) {
      auditor = new Log4jAuditor( auditorName, componentName, serviceName );
      auditors.put( key, auditor );
    }
    return auditor;
View Full Code Here

TOP

Related Classes of org.apache.hadoop.gateway.audit.api.Auditor

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.