1 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 33 public class AbstractSMTPSession implements SMTPSession { 34 35 38 public void abortMessage() { 39 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 40 } 41 42 45 public String clearResponseBuffer() { 46 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 47 } 48 49 52 public void endSession() { 53 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 54 } 55 56 59 public String getCommandArgument() { 60 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 61 } 62 63 66 public String getCommandName() { 67 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 68 } 69 70 73 public SMTPHandlerConfigurationData getConfigurationData() { 74 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 75 } 76 77 80 public Map getConnectionState() { 81 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 82 } 83 84 87 public InputStream getInputStream() { 88 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 89 } 90 91 94 public Mail getMail() { 95 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 96 } 97 98 101 public int getRcptCount() { 102 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 103 } 104 105 108 public String getRemoteHost() { 109 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 110 } 111 112 115 public String getRemoteIPAddress() { 116 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 117 } 118 119 122 public StringBuffer getResponseBuffer() { 123 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 124 } 125 126 129 public String getSessionID() { 130 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 131 } 132 133 136 public Map getState() { 137 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 138 } 139 140 143 public boolean getStopHandlerProcessing() { 144 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 145 } 146 147 150 public String getUser() { 151 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 152 } 153 154 157 public Watchdog getWatchdog() { 158 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 159 } 160 161 164 public boolean isAuthRequired() { 165 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 166 } 167 168 171 public boolean isRelayingAllowed() { 172 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 173 } 174 175 178 public boolean isSessionEnded() { 179 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 180 } 181 182 185 public String readCommandLine() throws IOException { 186 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 187 } 188 189 192 public void resetConnectionState() { 193 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 194 } 195 196 199 public void resetState() { 200 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 201 } 202 203 206 public void setMail(Mail mail) { 207 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 208 } 209 210 213 public void setRelayingAllowed(boolean relayingAllowed) { 214 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 215 } 216 217 220 public void setStopHandlerProcessing(boolean b) { 221 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 222 } 223 224 227 public void setUser(String user) { 228 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 229 } 230 231 234 public boolean useHeloEhloEnforcement() { 235 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 236 } 237 238 241 public void writeResponse(String respString) { 242 throw new UnsupportedOperationException ("Unimplemented Stub Method"); 243 } 244 245 } 246 | Popular Tags |