1
2
3
4
5 package ch.qos.logback.classic.sift;
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.AppenderBase;
16 import ch.qos.logback.classic.spi.ILoggingEvent;
17 import ch.qos.logback.core.sift.AppenderTrackerImpl;
18 import ch.qos.logback.core.sift.Discriminator;
19 import ch.qos.logback.core.sift.AppenderTracker;
20 import ch.qos.logback.core.Appender;
21 import ch.qos.logback.classic.gaffer.ConfigurationContributor;
22 import ch.qos.logback.core.CoreConstants;
23 import ch.qos.logback.core.helpers.NOPAppender;
24
25 public class GSiftingAppender
26 extends AppenderBase
27 implements groovy.lang.GroovyObject, ConfigurationContributor
28 {
29 protected AppenderTracker appenderTracker = null;
30
31 private Discriminator discriminator = null;
32 public Discriminator getDiscriminator() {
33 throw new InternalError("Stubbed method");
34 }
35 public void setDiscriminator(Discriminator value) {
36 throw new InternalError("Stubbed method");
37 }
38
39 private Closure builderClosure = null;
40 public Closure getBuilderClosure() {
41 throw new InternalError("Stubbed method");
42 }
43 public void setBuilderClosure(Closure value) {
44 throw new InternalError("Stubbed method");
45 }
46
47 private int nopaWarningCount = 0;
48 public int getNopaWarningCount() {
49 throw new InternalError("Stubbed method");
50 }
51 public void setNopaWarningCount(int value) {
52 throw new InternalError("Stubbed method");
53 }
54
55 public Map getMappings() {
56 throw new InternalError("Stubbed method");
57 }
58
59 public void start() {
60 throw new InternalError("Stubbed method");
61 }
62
63 public void stop() {
64 throw new InternalError("Stubbed method");
65 }
66
67 protected long getTimestamp(ILoggingEvent event) {
68 throw new InternalError("Stubbed method");
69 }
70
71 public Appender buildAppender(java.lang.String value) {
72 throw new InternalError("Stubbed method");
73 }
74
75 public void append(java.lang.Object object) {
76 throw new InternalError("Stubbed method");
77 }
78
79 public NOPAppender buildNOPAppender(java.lang.String discriminatingValue) {
80 throw new InternalError("Stubbed method");
81 }
82
83 public void build() {
84 throw new InternalError("Stubbed method");
85 }
86
87 public void sift(Closure clo) {
88 throw new InternalError("Stubbed method");
89 }
90
91 public AppenderTracker getAppenderTracker() {
92 throw new InternalError("Stubbed method");
93 }
94
95 public java.lang.String getDiscriminatorKey() {
96 throw new InternalError("Stubbed method");
97 }
98
99 public groovy.lang.MetaClass getMetaClass() {
100 throw new InternalError("Stubbed method");
101 }
102
103 public void setMetaClass(groovy.lang.MetaClass metaClass) {
104 throw new InternalError("Stubbed method");
105 }
106
107 public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
108 throw new InternalError("Stubbed method");
109 }
110
111 public java.lang.Object getProperty(java.lang.String name) {
112 throw new InternalError("Stubbed method");
113 }
114
115 public void setProperty(java.lang.String name, java.lang.Object value) {
116 throw new InternalError("Stubbed method");
117 }
118 }