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 2006/01/22 15:17:44 UTC

svn commit: r371304 - in /directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations: GracefulDisconnectContainer.java GracefulShutdownContainer.java

Author: elecharny
Date: Sun Jan 22 06:17:40 2006
New Revision: 371304

URL: http://svn.apache.org/viewcvs?rev=371304&view=rev
Log:
- Change the Copyright date to 2006 in the header
- Added some doco

Modified:
    directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulDisconnectContainer.java
    directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulShutdownContainer.java

Modified: directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulDisconnectContainer.java
URL: http://svn.apache.org/viewcvs/directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulDisconnectContainer.java?rev=371304&r1=371303&r2=371304&view=diff
==============================================================================
--- directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulDisconnectContainer.java (original)
+++ directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulDisconnectContainer.java Sun Jan 22 06:17:40 2006
@@ -1,5 +1,5 @@
 /*
- *   Copyright 2005 The Apache Software Foundation
+ *   Copyright 2006 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.
@@ -23,6 +23,7 @@
 
 
 /**
+ * A container for the GracefulDisconnect codec.
  *  
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
@@ -49,16 +50,13 @@
         states = GracefulDisconnectStatesEnum.getInstance();
     }
 
-
     /**
      * @return Returns the Graceful Shutdown object.
      */
     public GracefulDisconnect getGracefulDisconnect()
     {
-
         return gracefulDisconnect;
     }
-
     
     /**
      * Set a GracefulDisconnect Object into the container. It will be completed
@@ -71,7 +69,9 @@
         this.gracefulDisconnect = gracefulDisconnect;
     }
 
-    
+    /**
+     * Clean the container for the next decoding.
+     */
     public void clean()
     {
         super.clean();

Modified: directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulShutdownContainer.java
URL: http://svn.apache.org/viewcvs/directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulShutdownContainer.java?rev=371304&r1=371303&r2=371304&view=diff
==============================================================================
--- directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulShutdownContainer.java (original)
+++ directory/trunks/common/ldap/src/main/java/org/apache/ldap/common/codec/extended/operations/GracefulShutdownContainer.java Sun Jan 22 06:17:40 2006
@@ -1,5 +1,5 @@
 /*
- *   Copyright 2005 The Apache Software Foundation
+ *   Copyright 2006 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.
@@ -23,6 +23,7 @@
 
 
 /**
+ * A container for the GracefulShutdown codec.
  *  
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
@@ -49,16 +50,13 @@
         states = GracefulShutdownStatesEnum.getInstance();
     }
 
-
     /**
      * @return Returns the Graceful Shutdown object.
      */
     public GracefulShutdown getGracefulShutdown()
     {
-
         return gracefulShutdown;
     }
-
     
     /**
      * Set a GracefulShutdown Object into the container. It will be completed
@@ -71,7 +69,9 @@
         this.gracefulShutdown = gracefulShutdown;
     }
 
-    
+    /**
+     * Clean the container for the next decoding.
+     */
     public void clean()
     {
         super.clean();