1
2
3
4
5 package ch.qos.logback.classic.gaffer;
6
7 import java.lang.*;
8 import java.io.*;
9 import java.net.*;
10 import java.util.*;
11 import groovy.lang.*;
12 import groovy.util.*;
13 import java.math.BigDecimal;
14 import java.math.BigInteger;
15 import ch.qos.logback.core.util.Duration;
16 import groovy.lang.Closure;
17 import java.util.Map;
18 import ch.qos.logback.core.Context;
19 import ch.qos.logback.classic.turbo.ReconfigureOnChangeFilter;
20 import ch.qos.logback.classic.LoggerContext;
21 import ch.qos.logback.core.spi.ContextAwareImpl;
22 import ch.qos.logback.core.spi.ContextAwareBase;
23 import ch.qos.logback.classic.Level;
24 import ch.qos.logback.classic.Logger;
25 import ch.qos.logback.core.Appender;
26 import ch.qos.logback.core.status.StatusListener;
27 import java.text.SimpleDateFormat;
28 import ch.qos.logback.classic.turbo.TurboFilter;
29 import ch.qos.logback.core.CoreConstants;
30 import ch.qos.logback.core.util.ContextUtil;
31 import ch.qos.logback.core.joran.action.TimestampAction;
32 import ch.qos.logback.core.util.CachingDateFormatter;
33
34
35
36
37 public class ConfigurationDelegate
38 extends ContextAwareBase
39 implements groovy.lang.GroovyObject
40 {
41 private List appenderList = null;
42 public List getAppenderList() {
43 throw new InternalError("Stubbed method");
44 }
45 public void setAppenderList(List value) {
46 throw new InternalError("Stubbed method");
47 }
48
49 public java.lang.Object getDeclaredOrigin() {
50 throw new InternalError("Stubbed method");
51 }
52
53 public void scan(java.lang.String scanPeriodStr) {
54 throw new InternalError("Stubbed method");
55 }
56
57 public void statusListener(Class listenerClass) {
58 throw new InternalError("Stubbed method");
59 }
60
61 public void conversionRule(java.lang.String conversionWord, Class converterClass) {
62 throw new InternalError("Stubbed method");
63 }
64
65 public void root(Level level, List appenderNames) {
66 throw new InternalError("Stubbed method");
67 }
68
69 public void logger(java.lang.String name, Level level, List appenderNames, Boolean additivity) {
70 throw new InternalError("Stubbed method");
71 }
72
73 public void appender(java.lang.String name, Class clazz, Closure closure) {
74 throw new InternalError("Stubbed method");
75 }
76
77 private void copyContributions(AppenderDelegate appenderDelegate, Appender appender) {
78 throw new InternalError("Stubbed method");
79 }
80
81 public void turboFilter(Class clazz, Closure closure) {
82 throw new InternalError("Stubbed method");
83 }
84
85 public java.lang.String timestamp(java.lang.String datePattern, long timeReference) {
86 throw new InternalError("Stubbed method");
87 }
88
89 public groovy.lang.MetaClass getMetaClass() {
90 throw new InternalError("Stubbed method");
91 }
92
93 public void setMetaClass(groovy.lang.MetaClass metaClass) {
94 throw new InternalError("Stubbed method");
95 }
96
97 public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
98 throw new InternalError("Stubbed method");
99 }
100
101 public java.lang.Object getProperty(java.lang.String name) {
102 throw new InternalError("Stubbed method");
103 }
104
105 public void setProperty(java.lang.String name, java.lang.Object value) {
106 throw new InternalError("Stubbed method");
107 }
108 }