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

svn commit: r1004362 - /directory/shared/trunk/ldap-client-api/src/main/java/org/apache/directory/ldap/client/api/LdapNetworkConnection.java

Author: elecharny
Date: Mon Oct  4 19:03:54 2010
New Revision: 1004362

URL: http://svn.apache.org/viewvc?rev=1004362&view=rev
Log:
Added some missing javadoc

Modified:
    directory/shared/trunk/ldap-client-api/src/main/java/org/apache/directory/ldap/client/api/LdapNetworkConnection.java

Modified: directory/shared/trunk/ldap-client-api/src/main/java/org/apache/directory/ldap/client/api/LdapNetworkConnection.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-client-api/src/main/java/org/apache/directory/ldap/client/api/LdapNetworkConnection.java?rev=1004362&r1=1004361&r2=1004362&view=diff
==============================================================================
--- directory/shared/trunk/ldap-client-api/src/main/java/org/apache/directory/ldap/client/api/LdapNetworkConnection.java (original)
+++ directory/shared/trunk/ldap-client-api/src/main/java/org/apache/directory/ldap/client/api/LdapNetworkConnection.java Mon Oct  4 19:03:54 2010
@@ -1541,6 +1541,10 @@ public class LdapNetworkConnection exten
 
     /**
      * Handle the exception we got.
+     * 
+     * @param session The session we got the exception on
+     * @param cause The exception cause
+     * @throws Exception The t
      */
     public void exceptionCaught( IoSession session, Throwable cause ) throws Exception
     {
@@ -1563,6 +1567,10 @@ public class LdapNetworkConnection exten
     /**
      * Handle the incoming LDAP messages. This is where we feed the cursor for search
      * requests, or call the listener.
+     * 
+     * @param session The session that received a message
+     * @param message The received message
+     * @throws Exception If there is some error while processing the message
      */
     public void messageReceived( IoSession session, Object message ) throws Exception
     {