Tabnine Logo
ContextPropertyAction.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
ch.qos.logback.core.joran.action.ContextPropertyAction
constructor

Best Java code snippets using ch.qos.logback.core.joran.action.ContextPropertyAction.<init> (Showing top 8 results out of 315)

origin: camunda/camunda-bpm-platform

@Override
protected void addInstanceRules(RuleStore rs) {
 // is "configuration/variable" referenced in the docs?
 rs.addRule(new ElementSelector("configuration/variable"), new PropertyAction());
 rs.addRule(new ElementSelector("configuration/property"), new PropertyAction());
 rs.addRule(new ElementSelector("configuration/substitutionProperty"),
   new PropertyAction());
 rs.addRule(new ElementSelector("configuration/timestamp"), new TimestampAction());
 rs.addRule(new ElementSelector("configuration/define"), new DefinePropertyAction());
 // the contextProperty pattern is deprecated. It is undocumented
 // and will be dropped in future versions of logback
 rs.addRule(new ElementSelector("configuration/contextProperty"),
   new ContextPropertyAction());
 rs.addRule(new ElementSelector("configuration/conversionRule"),
   new ConversionRuleAction());
 rs.addRule(new ElementSelector("configuration/statusListener"),
   new StatusListenerAction());
 rs.addRule(new ElementSelector("configuration/appender"), new AppenderAction());
 rs.addRule(new ElementSelector("configuration/appender/appender-ref"),
   new AppenderRefAction());
 rs.addRule(new ElementSelector("configuration/newRule"), new NewRuleAction());
 rs.addRule(new ElementSelector("*/param"), new ParamAction());
}
origin: com.alibaba.citrus.tool/antx-autoexpand

@Override
protected void addInstanceRules(RuleStore rs) {
  rs.addRule(new Pattern("configuration/property"),
   new PropertyAction());
 
 rs.addRule(new Pattern("configuration/substitutionProperty"),
   new PropertyAction());
 
 rs.addRule(new Pattern("configuration/timestamp"),
   new TimestampAction());
 
 // the contextProperty pattern is deprecated. It is undocumented
 // and will be dropped in future versions of logback
 rs.addRule(new Pattern("configuration/contextProperty"),
   new ContextPropertyAction());
 
 rs.addRule(new Pattern("configuration/conversionRule"),
   new ConversionRuleAction());
 rs.addRule(new Pattern("configuration/statusListener"),
   new StatusListenerAction());
 rs.addRule(new Pattern("configuration/appender"), new AppenderAction());
 rs.addRule(new Pattern("configuration/appender/appender-ref"),
   new AppenderRefAction());
 rs.addRule(new Pattern("configuration/newRule"), new NewRuleAction());
 rs.addRule(new Pattern("*/param"), new ParamAction());
}
origin: ch.qos.logback/core

@Override
protected void addInstanceRules(RuleStore rs) {
 rs.addRule(new Pattern("configuration/variable"), new PropertyAction());
 rs.addRule(new Pattern("configuration/property"), new PropertyAction());
 rs.addRule(new Pattern("configuration/substitutionProperty"),
   new PropertyAction());
 rs.addRule(new Pattern("configuration/timestamp"), new TimestampAction());
 rs.addRule(new Pattern("configuration/define"), new DefinePropertyAction());
 // the contextProperty pattern is deprecated. It is undocumented
 // and will be dropped in future versions of logback
 rs.addRule(new Pattern("configuration/contextProperty"),
   new ContextPropertyAction());
 rs.addRule(new Pattern("configuration/conversionRule"),
   new ConversionRuleAction());
 rs.addRule(new Pattern("configuration/statusListener"),
   new StatusListenerAction());
 rs.addRule(new Pattern("configuration/appender"), new AppenderAction());
 rs.addRule(new Pattern("configuration/appender/appender-ref"),
   new AppenderRefAction());
 rs.addRule(new Pattern("configuration/newRule"), new NewRuleAction());
 rs.addRule(new Pattern("*/param"), new ParamAction());
}
origin: at.bestsolution.efxclipse.eclipse/ch.qos.logback.core

@Override
protected void addInstanceRules(RuleStore rs) {
 rs.addRule(new Pattern("configuration/variable"), new PropertyAction());
 rs.addRule(new Pattern("configuration/property"), new PropertyAction());
 rs.addRule(new Pattern("configuration/substitutionProperty"),
   new PropertyAction());
 rs.addRule(new Pattern("configuration/timestamp"), new TimestampAction());
 rs.addRule(new Pattern("configuration/define"), new DefinePropertyAction());
 // the contextProperty pattern is deprecated. It is undocumented
 // and will be dropped in future versions of logback
 rs.addRule(new Pattern("configuration/contextProperty"),
   new ContextPropertyAction());
 rs.addRule(new Pattern("configuration/conversionRule"),
   new ConversionRuleAction());
 rs.addRule(new Pattern("configuration/statusListener"),
   new StatusListenerAction());
 rs.addRule(new Pattern("configuration/appender"), new AppenderAction());
 rs.addRule(new Pattern("configuration/appender/appender-ref"),
   new AppenderRefAction());
 rs.addRule(new Pattern("configuration/newRule"), new NewRuleAction());
 rs.addRule(new Pattern("*/param"), new ParamAction());
}
origin: com.impetus.fabric/fabric-jdbc-driver-shaded

@Override
protected void addInstanceRules(RuleStore rs) {
  // is "configuration/variable" referenced in the docs?
  rs.addRule(new ElementSelector("configuration/variable"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/property"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/substitutionProperty"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/timestamp"), new TimestampAction());
  rs.addRule(new ElementSelector("configuration/shutdownHook"), new ShutdownHookAction());
  rs.addRule(new ElementSelector("configuration/define"), new DefinePropertyAction());
  // the contextProperty pattern is deprecated. It is undocumented
  // and will be dropped in future versions of logback
  rs.addRule(new ElementSelector("configuration/contextProperty"), new ContextPropertyAction());
  rs.addRule(new ElementSelector("configuration/conversionRule"), new ConversionRuleAction());
  rs.addRule(new ElementSelector("configuration/statusListener"), new StatusListenerAction());
  rs.addRule(new ElementSelector("configuration/appender"), new AppenderAction<E>());
  rs.addRule(new ElementSelector("configuration/appender/appender-ref"), new AppenderRefAction<E>());
  rs.addRule(new ElementSelector("configuration/newRule"), new NewRuleAction());
  rs.addRule(new ElementSelector("*/param"), new ParamAction(getBeanDescriptionCache()));
}
origin: io.virtdata/virtdata-lib-realer

@Override
protected void addInstanceRules(RuleStore rs) {
  // is "configuration/variable" referenced in the docs?
  rs.addRule(new ElementSelector("configuration/variable"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/property"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/substitutionProperty"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/timestamp"), new TimestampAction());
  rs.addRule(new ElementSelector("configuration/shutdownHook"), new ShutdownHookAction());
  rs.addRule(new ElementSelector("configuration/define"), new DefinePropertyAction());
  // the contextProperty pattern is deprecated. It is undocumented
  // and will be dropped in future versions of logback
  rs.addRule(new ElementSelector("configuration/contextProperty"), new ContextPropertyAction());
  rs.addRule(new ElementSelector("configuration/conversionRule"), new ConversionRuleAction());
  rs.addRule(new ElementSelector("configuration/statusListener"), new StatusListenerAction());
  rs.addRule(new ElementSelector("configuration/appender"), new AppenderAction<E>());
  rs.addRule(new ElementSelector("configuration/appender/appender-ref"), new AppenderRefAction<E>());
  rs.addRule(new ElementSelector("configuration/newRule"), new NewRuleAction());
  rs.addRule(new ElementSelector("*/param"), new ParamAction(getBeanDescriptionCache()));
}
origin: com.hynnet/logback-core

@Override
protected void addInstanceRules(RuleStore rs) {
 // is "configuration/variable" referenced in the docs?
 rs.addRule(new ElementSelector("configuration/variable"), new PropertyAction());
 rs.addRule(new ElementSelector("configuration/property"), new PropertyAction());
 rs.addRule(new ElementSelector("configuration/substitutionProperty"),
   new PropertyAction());
 rs.addRule(new ElementSelector("configuration/timestamp"), new TimestampAction());
 rs.addRule(new ElementSelector("configuration/shutdownHook"), new ShutdownHookAction());
 rs.addRule(new ElementSelector("configuration/define"), new DefinePropertyAction());
 // the contextProperty pattern is deprecated. It is undocumented
 // and will be dropped in future versions of logback
 rs.addRule(new ElementSelector("configuration/contextProperty"),
   new ContextPropertyAction());
 rs.addRule(new ElementSelector("configuration/conversionRule"),
   new ConversionRuleAction());
 rs.addRule(new ElementSelector("configuration/statusListener"),
   new StatusListenerAction());
 rs.addRule(new ElementSelector("configuration/appender"), new AppenderAction());
 rs.addRule(new ElementSelector("configuration/appender/appender-ref"),
   new AppenderRefAction());
 rs.addRule(new ElementSelector("configuration/newRule"), new NewRuleAction());
 rs.addRule(new ElementSelector("*/param"), new ParamAction());
}
origin: Nextdoor/bender

@Override
protected void addInstanceRules(RuleStore rs) {
  // is "configuration/variable" referenced in the docs?
  rs.addRule(new ElementSelector("configuration/variable"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/property"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/substitutionProperty"), new PropertyAction());
  rs.addRule(new ElementSelector("configuration/timestamp"), new TimestampAction());
  rs.addRule(new ElementSelector("configuration/shutdownHook"), new ShutdownHookAction());
  rs.addRule(new ElementSelector("configuration/define"), new DefinePropertyAction());
  // the contextProperty pattern is deprecated. It is undocumented
  // and will be dropped in future versions of logback
  rs.addRule(new ElementSelector("configuration/contextProperty"), new ContextPropertyAction());
  rs.addRule(new ElementSelector("configuration/conversionRule"), new ConversionRuleAction());
  rs.addRule(new ElementSelector("configuration/statusListener"), new StatusListenerAction());
  rs.addRule(new ElementSelector("configuration/appender"), new AppenderAction<E>());
  rs.addRule(new ElementSelector("configuration/appender/appender-ref"), new AppenderRefAction<E>());
  rs.addRule(new ElementSelector("configuration/newRule"), new NewRuleAction());
  rs.addRule(new ElementSelector("*/param"), new ParamAction(getBeanDescriptionCache()));
}
ch.qos.logback.core.joran.actionContextPropertyAction<init>

Popular methods of ContextPropertyAction

  • addError

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • startActivity (Activity)
  • setContentView (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • JTextField (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now