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;
}