Return-Path: Delivered-To: apmail-incubator-directory-cvs-archive@www.apache.org Received: (qmail 94067 invoked from network); 26 Aug 2004 12:19:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 26 Aug 2004 12:19:52 -0000 Received: (qmail 40131 invoked by uid 500); 26 Aug 2004 12:19:52 -0000 Delivered-To: apmail-incubator-directory-cvs-archive@incubator.apache.org Received: (qmail 40098 invoked by uid 500); 26 Aug 2004 12:19:51 -0000 Mailing-List: contact directory-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk Reply-To: directory-dev@incubator.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list directory-cvs@incubator.apache.org Received: (qmail 40084 invoked by uid 99); 26 Aug 2004 12:19:51 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 26 Aug 2004 05:19:51 -0700 Received: (qmail 94045 invoked by uid 65534); 26 Aug 2004 12:19:50 -0000 Date: 26 Aug 2004 12:19:50 -0000 Message-ID: <20040826121950.94043.qmail@minotaur.apache.org> From: akarasulu@apache.org To: directory-cvs@incubator.apache.org Subject: svn commit: rev 37075 - incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/message X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: akarasulu Date: Thu Aug 26 05:19:50 2004 New Revision: 37075 Modified: incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java Log: coding convention changes Modified: incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java ============================================================================== --- incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java (original) +++ incubator/directory/ldap/trunk/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java Thu Aug 26 05:19:50 2004 @@ -14,7 +14,7 @@ * limitations under the License. * */ -package org.apache.ldap.common.message ; +package org.apache.ldap.common.message; /** @@ -28,11 +28,11 @@ extends AbstractRequest implements CompareRequest { /** Distinguished name identifying the compared entry */ - private String name ; + private String name; /** The id of the attribute used in the comparison */ - private String attrId ; + private String attrId; /** The value of the attribute used in the comparison */ - private String attrVal ; + private String attrVal; // ------------------------------------------------------------------------ @@ -48,7 +48,7 @@ */ public CompareRequestImpl( final int id ) { - super( id, TYPE, true ) ; + super( id, TYPE, true ); } @@ -65,7 +65,7 @@ */ public String getName() { - return name ; + return name; } @@ -77,8 +77,8 @@ */ public void setName( String name ) { - lockCheck( "Attempt to alter entry name on locked CompareRequest!" ) ; - this.name = name ; + lockCheck( "Attempt to alter entry name on locked CompareRequest!" ); + this.name = name; } @@ -89,7 +89,7 @@ */ public String getAssertionValue() { - return attrVal ; + return attrVal; } @@ -101,8 +101,8 @@ public void setAssertionValue( String attrVal ) { super.lockCheck( - "Attempt to alter attribute value of locked CompareRequest" ) ; - this.attrVal = attrVal ; + "Attempt to alter attribute value of locked CompareRequest" ); + this.attrVal = attrVal; } @@ -113,7 +113,7 @@ */ public String getAttributeId() { - return attrId ; + return attrId; } @@ -125,8 +125,8 @@ public void setAttributeId( String attrId ) { super.lockCheck( - "Attempt to alter attribute id of locked CompareRequest" ) ; - this.attrId = attrId ; + "Attempt to alter attribute id of locked CompareRequest" ); + this.attrId = attrId; } @@ -143,7 +143,7 @@ */ public MessageTypeEnum getResponseType() { - return RESP_TYPE ; + return RESP_TYPE; }