1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.apache.james.smtpserver;
22
23 import org.apache.james.util.watchdog.Watchdog;
24 import org.apache.mailet.Mail;
25
26 import java.io.IOException;
27 import java.io.InputStream;
28 import java.util.Map;
29
30
31
32
33 public class AbstractSMTPSession implements SMTPSession {
34
35
36
37
38 public void abortMessage() {
39 throw new UnsupportedOperationException("Unimplemented Stub Method");
40 }
41
42
43
44
45 public String clearResponseBuffer() {
46 throw new UnsupportedOperationException("Unimplemented Stub Method");
47 }
48
49
50
51
52 public void endSession() {
53 throw new UnsupportedOperationException("Unimplemented Stub Method");
54 }
55
56
57
58
59 public String getCommandArgument() {
60 throw new UnsupportedOperationException("Unimplemented Stub Method");
61 }
62
63
64
65
66 public String getCommandName() {
67 throw new UnsupportedOperationException("Unimplemented Stub Method");
68 }
69
70
71
72
73 public SMTPHandlerConfigurationData getConfigurationData() {
74 throw new UnsupportedOperationException("Unimplemented Stub Method");
75 }
76
77
78
79
80 public Map getConnectionState() {
81 throw new UnsupportedOperationException("Unimplemented Stub Method");
82 }
83
84
85
86
87 public InputStream getInputStream() {
88 throw new UnsupportedOperationException("Unimplemented Stub Method");
89 }
90
91
92
93
94 public Mail getMail() {
95 throw new UnsupportedOperationException("Unimplemented Stub Method");
96 }
97
98
99
100
101 public int getRcptCount() {
102 throw new UnsupportedOperationException("Unimplemented Stub Method");
103 }
104
105
106
107
108 public String getRemoteHost() {
109 throw new UnsupportedOperationException("Unimplemented Stub Method");
110 }
111
112
113
114
115 public String getRemoteIPAddress() {
116 throw new UnsupportedOperationException("Unimplemented Stub Method");
117 }
118
119
120
121
122 public StringBuffer getResponseBuffer() {
123 throw new UnsupportedOperationException("Unimplemented Stub Method");
124 }
125
126
127
128
129 public String getSessionID() {
130 throw new UnsupportedOperationException("Unimplemented Stub Method");
131 }
132
133
134
135
136 public Map getState() {
137 throw new UnsupportedOperationException("Unimplemented Stub Method");
138 }
139
140
141
142
143 public boolean getStopHandlerProcessing() {
144 throw new UnsupportedOperationException("Unimplemented Stub Method");
145 }
146
147
148
149
150 public String getUser() {
151 throw new UnsupportedOperationException("Unimplemented Stub Method");
152 }
153
154
155
156
157 public Watchdog getWatchdog() {
158 throw new UnsupportedOperationException("Unimplemented Stub Method");
159 }
160
161
162
163
164 public boolean isAuthRequired() {
165 throw new UnsupportedOperationException("Unimplemented Stub Method");
166 }
167
168
169
170
171 public boolean isRelayingAllowed() {
172 throw new UnsupportedOperationException("Unimplemented Stub Method");
173 }
174
175
176
177
178 public boolean isSessionEnded() {
179 throw new UnsupportedOperationException("Unimplemented Stub Method");
180 }
181
182
183
184
185 public String readCommandLine() throws IOException {
186 throw new UnsupportedOperationException("Unimplemented Stub Method");
187 }
188
189
190
191
192 public void resetConnectionState() {
193 throw new UnsupportedOperationException("Unimplemented Stub Method");
194 }
195
196
197
198
199 public void resetState() {
200 throw new UnsupportedOperationException("Unimplemented Stub Method");
201 }
202
203
204
205
206 public void setMail(Mail mail) {
207 throw new UnsupportedOperationException("Unimplemented Stub Method");
208 }
209
210
211
212
213 public void setRelayingAllowed(boolean relayingAllowed) {
214 throw new UnsupportedOperationException("Unimplemented Stub Method");
215 }
216
217
218
219
220 public void setStopHandlerProcessing(boolean b) {
221 throw new UnsupportedOperationException("Unimplemented Stub Method");
222 }
223
224
225
226
227 public void setUser(String user) {
228 throw new UnsupportedOperationException("Unimplemented Stub Method");
229 }
230
231
232
233
234 public boolean useHeloEhloEnforcement() {
235 throw new UnsupportedOperationException("Unimplemented Stub Method");
236 }
237
238
239
240
241 public void writeResponse(String respString) {
242 throw new UnsupportedOperationException("Unimplemented Stub Method");
243 }
244
245 }