View Javadoc

1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2011, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.classic.util;
15  
16  import ch.qos.logback.classic.PatternLayout;
17  import ch.qos.logback.classic.boolex.JaninoEventEvaluator;
18  import ch.qos.logback.classic.encoder.PatternLayoutEncoder;
19  import ch.qos.logback.core.AppenderBase;
20  import ch.qos.logback.core.UnsynchronizedAppenderBase;
21  import ch.qos.logback.core.filter.EvaluatorFilter;
22  import ch.qos.logback.core.joran.spi.DefaultNestedComponentRegistry;
23  
24  /**
25   * Contains mappings for the default type of nested components in
26   * logback-classic.
27   * 
28   * @author Ceki Gulcu
29   * 
30   */
31  public class DefaultNestedComponentRules {
32  
33    static public void addDefaultNestedComponentRegistryRules(
34        DefaultNestedComponentRegistry registry) {
35      registry.add(AppenderBase.class, "layout", PatternLayout.class);
36      registry.add(UnsynchronizedAppenderBase.class, "layout", PatternLayout.class);
37      
38      registry.add(AppenderBase.class, "encoder", PatternLayoutEncoder.class);
39      registry.add(UnsynchronizedAppenderBase.class, "encoder", PatternLayoutEncoder.class);
40      
41      registry
42          .add(EvaluatorFilter.class, "evaluator", JaninoEventEvaluator.class);
43  
44    }
45  
46  }