You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2011/11/18 18:35:57 UTC

svn commit: r1203758 - /james/protocols/trunk/lmtp/src/main/java/org/apache/james/protocols/lmtp/LMTPProtocolHandlerChain.java

Author: norman
Date: Fri Nov 18 17:35:57 2011
New Revision: 1203758

URL: http://svn.apache.org/viewvc?rev=1203758&view=rev
Log:
Add constructor from super class

Modified:
    james/protocols/trunk/lmtp/src/main/java/org/apache/james/protocols/lmtp/LMTPProtocolHandlerChain.java

Modified: james/protocols/trunk/lmtp/src/main/java/org/apache/james/protocols/lmtp/LMTPProtocolHandlerChain.java
URL: http://svn.apache.org/viewvc/james/protocols/trunk/lmtp/src/main/java/org/apache/james/protocols/lmtp/LMTPProtocolHandlerChain.java?rev=1203758&r1=1203757&r2=1203758&view=diff
==============================================================================
--- james/protocols/trunk/lmtp/src/main/java/org/apache/james/protocols/lmtp/LMTPProtocolHandlerChain.java (original)
+++ james/protocols/trunk/lmtp/src/main/java/org/apache/james/protocols/lmtp/LMTPProtocolHandlerChain.java Fri Nov 18 17:35:57 2011
@@ -37,13 +37,22 @@ import org.apache.james.protocols.smtp.c
 import org.apache.james.protocols.smtp.core.VrfyCmdHandler;
 import org.apache.james.protocols.smtp.core.esmtp.MailSizeEsmtpExtension;
 import org.apache.james.protocols.smtp.core.esmtp.StartTlsCmdHandler;
+import org.apache.james.protocols.smtp.hook.Hook;
 
 public class LMTPProtocolHandlerChain extends SMTPProtocolHandlerChain{
 
-    public LMTPProtocolHandlerChain() throws WiringException {
+    public LMTPProtocolHandlerChain() {
         super();
     }
 
+    public LMTPProtocolHandlerChain(boolean addDefault) {
+        super(addDefault);
+    }
+
+    public LMTPProtocolHandlerChain(Hook... hooks) throws WiringException {
+        super(hooks);
+    }
+
     @Override
     protected List<ProtocolHandler> initDefaultHandlers() {
         List<ProtocolHandler> defaultHandlers = new ArrayList<ProtocolHandler>();



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org