Examples of ThenAction


Examples of ch.qos.logback.core.joran.conditional.ThenAction

    rs.addRule(new ElementSelector("configuration/root/appender-ref"),
        new AppenderRefAction());
   
    // add if-then-else support
    rs.addRule(new ElementSelector("*/if"), new IfAction());
    rs.addRule(new ElementSelector("*/if/then"), new ThenAction());
    rs.addRule(new ElementSelector("*/if/then/*"), new NOPAction());
    rs.addRule(new ElementSelector("*/if/else"), new ElseAction());
    rs.addRule(new ElementSelector("*/if/else/*"), new NOPAction());
   
    // add jmxConfigurator only if we have JMX available.
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

    rs.addRule(new Pattern("configuration/root/appender-ref"),
        new AppenderRefAction());
   
    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());  
   
    // add jmxConfigurator only if we have JMX available.
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

    rs.addRule(new Pattern("configuration/root/appender-ref"),
        new AppenderRefAction());
   
    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());  
   
    // add jmxConfigurator only if we have JMX available.
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

    rs.addRule(new Pattern("configuration/root/appender-ref"),
        new AppenderRefAction());
   
    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());  
   
    // add jmxConfigurator only if we have JMX available.
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

   
    rs.addRule(new Pattern("configuration/evaluator"), new EvaluatorAction());

    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());

    rs.addRule(new Pattern("configuration/include"), new IncludeAction());
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

   
    rs.addRule(new Pattern("configuration/evaluator"), new EvaluatorAction());

    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());

    rs.addRule(new Pattern("configuration/include"), new IncludeAction());
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

    rs.addRule(new Pattern("configuration/root/appender-ref"),
        new AppenderRefAction());
   
    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());  
   
    // add jmxConfigurator only if we have JMX available.
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

    rs.addRule(new Pattern("configuration/root/appender-ref"),
        new AppenderRefAction());
   
    // add if-then-else support
    rs.addRule(new Pattern("*/if"), new IfAction());
    rs.addRule(new Pattern("*/if/then"), new ThenAction());
    rs.addRule(new Pattern("*/if/then/*"), new NOPAction());
    rs.addRule(new Pattern("*/if/else"), new ElseAction());
    rs.addRule(new Pattern("*/if/else/*"), new NOPAction());  
   
    // add jmxConfigurator only if we have JMX available.
View Full Code Here

Examples of ch.qos.logback.core.joran.conditional.ThenAction

   
    rs.addRule(new ElementSelector("configuration/evaluator"), new EvaluatorAction());

    // add if-then-else support
    rs.addRule(new ElementSelector("*/if"), new IfAction());
    rs.addRule(new ElementSelector("*/if/then"), new ThenAction());
    rs.addRule(new ElementSelector("*/if/then/*"), new NOPAction());
    rs.addRule(new ElementSelector("*/if/else"), new ElseAction());
    rs.addRule(new ElementSelector("*/if/else/*"), new NOPAction());

    rs.addRule(new ElementSelector("configuration/include"), new IncludeAction());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.