You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/02/10 21:00:54 UTC

svn commit: r153283 - incubator/directory/apacheds/trunk/protocol/src/main/java/org/apache/ldap/server/protocol/CommandHandler.java

Author: akarasulu
Date: Thu Feb 10 12:00:50 2005
New Revision: 153283

URL: http://svn.apache.org/viewcvs?view=rev&rev=153283
Log:
trustin must have forgotten this

Added:
    incubator/directory/apacheds/trunk/protocol/src/main/java/org/apache/ldap/server/protocol/CommandHandler.java

Added: incubator/directory/apacheds/trunk/protocol/src/main/java/org/apache/ldap/server/protocol/CommandHandler.java
URL: http://svn.apache.org/viewcvs/incubator/directory/apacheds/trunk/protocol/src/main/java/org/apache/ldap/server/protocol/CommandHandler.java?view=auto&rev=153283
==============================================================================
--- incubator/directory/apacheds/trunk/protocol/src/main/java/org/apache/ldap/server/protocol/CommandHandler.java (added)
+++ incubator/directory/apacheds/trunk/protocol/src/main/java/org/apache/ldap/server/protocol/CommandHandler.java Thu Feb 10 12:00:50 2005
@@ -0,0 +1,32 @@
+/*
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed 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.ldap.server.protocol;
+
+
+import org.apache.mina.protocol.ProtocolSession;
+
+
+/**
+ * Interpretting what trustin did here - missing interface - filling in blanks.
+ *
+ * @author <a href="mailto:directory-dev@incubator.apache.org">Apache Directory Project</a>
+ * @version $Rev$
+ */
+public interface CommandHandler
+{
+    void handle( ProtocolSession session, Object request );
+}