1
2
3
4
5
6
7
8
9
10
11
12
13
14 package ch.qos.logback.classic.joran.action;
15
16 import org.xml.sax.Attributes;
17
18 import ch.qos.logback.classic.model.ContextNameModel;
19 import ch.qos.logback.core.joran.action.BaseModelAction;
20 import ch.qos.logback.core.joran.spi.SaxEventInterpretationContext;
21 import ch.qos.logback.core.model.Model;
22
23 public class ContextNameAction extends BaseModelAction {
24
25 @Override
26 protected Model buildCurrentModel(SaxEventInterpretationContext interpretationContext, String name,
27 Attributes attributes) {
28 ContextNameModel contextNameModel = new ContextNameModel();
29 return contextNameModel;
30 }
31
32 }