Package org.apache.hadoop.gateway.audit.log4j.correlation

Examples of org.apache.hadoop.gateway.audit.log4j.correlation.Log4jCorrelationService


   * @return The default correlation service implementation.  Will not be null.
   */
  public static CorrelationService getCorrelationService() {
    // Race condition acceptable and will only result in multiple service instantiations.
    if( correlationService == null ) {
      correlationService = new Log4jCorrelationService();
    }
    return correlationService;
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.gateway.audit.log4j.correlation.Log4jCorrelationService

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.