Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 113 invoked from network); 18 Jun 2005 12:21:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Jun 2005 12:21:38 -0000 Received: (qmail 18047 invoked by uid 500); 18 Jun 2005 12:21:37 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 18025 invoked by uid 500); 18 Jun 2005 12:21:37 -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 18010 invoked by uid 99); 18 Jun 2005 12:21:37 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Jun 2005 05:21:35 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 18 Jun 2005 05:21:11 -0700 Received: (qmail 99909 invoked by uid 65534); 18 Jun 2005 12:21:16 -0000 Message-ID: <20050618122116.99907.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r191282 - /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/filters/ExtensibleMatchFilter.java Date: Sat, 18 Jun 2005 12:21:15 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.0-dev X-Old-Spam-Check-By: apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sat Jun 18 05:21:15 2005 New Revision: 191282 URL: http://svn.apache.org/viewcvs?rev=3D191282&view=3Drev Log: Replaced the LdapString by MutableString. This is so stupid. I gonna take t= ime to get rid of MutableString.... Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/po= jo/filters/ExtensibleMatchFilter.java Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/l= dap/pojo/filters/ExtensibleMatchFilter.java URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/s= rc/java/org/apache/asn1/ldap/pojo/filters/ExtensibleMatchFilter.java?rev=3D= 191282&r1=3D191281&r2=3D191282&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/po= jo/filters/ExtensibleMatchFilter.java (original) +++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/po= jo/filters/ExtensibleMatchFilter.java Sat Jun 18 05:21:15 2005 @@ -16,8 +16,8 @@ */ package org.apache.asn1.ldap.pojo.filters; =20 -import org.apache.asn1.ldap.codec.primitives.LdapString; import org.apache.asn1.primitives.OctetString; +import org.apache.asn1.util.MutableString; =20 =20 /** @@ -34,10 +34,10 @@ private int expectedMatchingRuleLength; =20 /** Matching rule */ - private LdapString matchingRule; + private MutableString matchingRule; =20 /** Matching rule type */ - private LdapString type; + private MutableString type; =20 /** Matching rule value */ private OctetString matchValue; @@ -49,15 +49,18 @@ =20 /** * Creates a new ExtensibleMatchFilter object. + * The dnAttributes flag defaults to false. */ public ExtensibleMatchFilter() { - dnAttributes =3D true; + dnAttributes =3D false; } =20 //~ Methods ----------------------------------------------------------= -------------------------- =20 /** + * Get the dnAttributes flag + * * @return Returns the dnAttributes. */ public boolean isDnAttributes() @@ -66,6 +69,8 @@ } =20 /** + * Set the dnAttributes flag + * * @param dnAttributes The dnAttributes to set. */ public void setDnAttributes( boolean dnAttributes ) @@ -74,22 +79,28 @@ } =20 /** + * Get the matchingRule + * * @return Returns the matchingRule. */ - public LdapString getMatchingRule() + public MutableString getMatchingRule() { return matchingRule; } =20 /** + * Set the matchingRule + * * @param matchingRule The matchingRule to set. */ - public void setMatchingRule( LdapString matchingRule ) + public void setMatchingRule( MutableString matchingRule ) { this.matchingRule =3D matchingRule; } =20 /** + * Get the matchValue + * * @return Returns the matchValue. */ public OctetString getMatchValue() @@ -98,6 +109,8 @@ } =20 /** + * Set the matchValue + * * @param matchValue The matchValue to set. */ public void setMatchValue( OctetString matchValue ) @@ -106,22 +119,28 @@ } =20 /** + * Get the type + * * @return Returns the type. */ - public LdapString getType() + public MutableString getType() { return type; } =20 /** + * Set the type + * * @param type The type to set. */ - public void setType( LdapString type ) + public void setType( MutableString type ) { this.type =3D type; } =20 /** + * get the expectedMatchingRuleLength + * * @return Returns the expectedMatchingRuleLength. */ public int getExpectedMatchingRuleLength() @@ -130,6 +149,8 @@ } =20 /** + * Set the expectedMatchingRuleLength + * * @param expectedMatchingRuleLength The expectedMatchingRuleLength to= set. */ public void setExpectedMatchingRuleLength( int expectedMatchingRuleLen= gth )