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 2012/01/24 19:21:28 UTC

svn commit: r1235392 - /directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java

Author: elecharny
Date: Tue Jan 24 18:21:28 2012
New Revision: 1235392

URL: http://svn.apache.org/viewvc?rev=1235392&view=rev
Log:
Some Javadoc fix, removed a @Override annotation

Modified:
    directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java

Modified: directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java?rev=1235392&r1=1235391&r2=1235392&view=diff
==============================================================================
--- directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java (original)
+++ directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java Tue Jan 24 18:21:28 2012
@@ -6,16 +6,16 @@
  *  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. 
- *  
+ *  under the License.
+ * 
  */
 package org.apache.directory.shared.ldap.extras.extended.ads_impl.certGeneration;
 
@@ -34,7 +34,7 @@ import org.apache.directory.shared.util.
  * 
  * An extended operation for generating a public key Certificate.
  * <pre>
- *   CertGenerateObject ::= SEQUENCE 
+ *   CertGenerateObject ::= SEQUENCE
  *   {
  *      targetDN        IA5String,
  *      issuerDN        IA5String,
@@ -59,7 +59,9 @@ public class CertGenerationObject extend
     private int requestLength = 0;
 
 
-    @Override
+    /**
+     * {@inheritDoc}
+     */
     public int computeLength()
     {
         int len = Strings.getBytesUtf8( request.getTargetDN() ).length;