From commits-return-10711-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Wed Nov 01 16:13:00 2006 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 57688 invoked from network); 1 Nov 2006 16:12:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Nov 2006 16:12:58 -0000 Received: (qmail 14015 invoked by uid 500); 1 Nov 2006 16:13:09 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 13976 invoked by uid 500); 1 Nov 2006 16:13:09 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 13953 invoked by uid 99); 1 Nov 2006 16:13:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2006 08:13:09 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2006 08:12:57 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7D7B31A9846; Wed, 1 Nov 2006 08:12:33 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r469957 - /directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/CompareRequest.java Date: Wed, 01 Nov 2006 16:12:33 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061101161233.7D7B31A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Wed Nov 1 08:12:32 2006 New Revision: 469957 URL: http://svn.apache.org/viewvc?view=rev&rev=469957 Log: Fixed javadoc Modified: directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/CompareRequest.java Modified: directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/CompareRequest.java URL: http://svn.apache.org/viewvc/directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/CompareRequest.java?view=diff&rev=469957&r1=469956&r2=469957 ============================================================================== --- directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/CompareRequest.java (original) +++ directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/CompareRequest.java Wed Nov 1 08:12:32 2006 @@ -51,8 +51,7 @@ * Sets the distinguished name of the entry to be compared using the * attribute value assertion. * - * @param a_name - * the DN of the compared entry. + * @param name the DN of the compared entry. */ void setName( LdapDN name ); @@ -68,17 +67,15 @@ /** * Sets the attribute value to use in the comparison. * - * @param a_value - * the attribute value used in comparison. + * @param value the attribute value used in comparison. */ - void setAssertionValue( String a_value ); + void setAssertionValue( String value ); /** * Sets the attribute value to use in the comparison. * - * @param a_value - * the attribute value used in comparison. + * @param value the attribute value used in comparison. */ void setAssertionValue( byte[] value ); @@ -94,8 +91,7 @@ /** * Sets the attribute id used in the comparison. * - * @param a_attrId - * the attribute id used in comparison. + * @param attrId the attribute id used in comparison. */ - void setAttributeId( String a_attrId ); + void setAttributeId( String attrId ); }