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 er...@apache.org on 2012/01/06 12:32:20 UTC

svn commit: r1228113 - in /james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle: ./ InitializingLifecycleAwareProtocolHandler.java

Author: eric
Date: Fri Jan  6 11:32:20 2012
New Revision: 1228113

URL: http://svn.apache.org/viewvc?rev=1228113&view=rev
Log:
Add the InitializingLifecycleAwareProtocolHandler interface (JAMES-1360)

Added:
    james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle/
    james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle/InitializingLifecycleAwareProtocolHandler.java

Added: james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle/InitializingLifecycleAwareProtocolHandler.java
URL: http://svn.apache.org/viewvc/james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle/InitializingLifecycleAwareProtocolHandler.java?rev=1228113&view=auto
==============================================================================
--- james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle/InitializingLifecycleAwareProtocolHandler.java (added)
+++ james/server/trunk/protocols-library/src/main/java/org/apache/james/protocols/lib/lifecycle/InitializingLifecycleAwareProtocolHandler.java Fri Jan  6 11:32:20 2012
@@ -0,0 +1,35 @@
+/****************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one   *
+ * or more contributor license agreements.  See the NOTICE file *
+ * distributed with this work for additional information        *
+ * regarding copyright ownership.  The ASF licenses this file   *
+ * to you under the Apache License, Version 2.0 (the            *
+ * "License"); you may not use this file except in compliance   *
+ * with the License.  You may obtain a copy of the License at   *
+ *                                                              *
+ *   http://www.apache.org/licenses/LICENSE-2.0                 *
+ *                                                              *
+ * Unless required by applicable law or agreed to in writing,   *
+ * software distributed under the License is distributed on an  *
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
+ * KIND, either express or implied.  See the License for the    *
+ * specific language governing permissions and limitations      *
+ * under the License.                                           *
+ ****************************************************************/
+package org.apache.james.protocols.lib.lifecycle;
+
+import org.apache.commons.configuration.Configuration;
+import org.apache.commons.configuration.ConfigurationException;
+import org.apache.james.protocols.api.handler.LifecycleAwareProtocolHandler;
+
+public interface InitializingLifecycleAwareProtocolHandler extends LifecycleAwareProtocolHandler {
+    
+    /**
+     * Init with the given {@link Configuration}
+     * 
+     * @param config
+     * @throws ConfigurationException
+     */
+    public void init(Configuration config) throws ConfigurationException;
+    
+}



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