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 2005/09/03 03:20:01 UTC

svn commit: r267374 - /directory/shared/ldap/branches/new-codec-integration/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java

Author: elecharny
Date: Fri Sep  2 18:19:57 2005
New Revision: 267374

URL: http://svn.apache.org/viewcvs?rev=267374&view=rev
Log:
Changed the stored value from String to byte[]

Modified:
    directory/shared/ldap/branches/new-codec-integration/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java

Modified: directory/shared/ldap/branches/new-codec-integration/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/new-codec-integration/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java?rev=267374&r1=267373&r2=267374&view=diff
==============================================================================
--- directory/shared/ldap/branches/new-codec-integration/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java (original)
+++ directory/shared/ldap/branches/new-codec-integration/common/src/java/org/apache/ldap/common/message/CompareRequestImpl.java Fri Sep  2 18:19:57 2005
@@ -33,7 +33,7 @@
     /** The id of the attribute used in the comparison */
     private String attrId;
     /** The value of the attribute used in the comparison */
-    private String attrVal;
+    private byte[] attrVal;
 
 
     // ------------------------------------------------------------------------
@@ -88,7 +88,7 @@
      *
      * @return the attribute value to used in comparison.
      */
-    public String getAssertionValue()
+    public byte[] getAssertionValue()
     {
         return attrVal;
     }
@@ -99,7 +99,7 @@
      *
      * @param attrVal the attribute value used in comparison.
      */
-    public void setAssertionValue( String attrVal )
+    public void setAssertionValue( byte[] attrVal )
     {
         super.lockCheck(
             "Attempt to alter attribute value of locked CompareRequest" );