You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2006/02/12 06:51:22 UTC

svn commit: r377135 [24/36] - in /directory/sandbox/akarasulu/rc1: apacheds/core-plugin/src/main/java/org/apache/directory/server/core/tools/schema/ apacheds/core-plugin/src/test/java/org/apache/directory/server/core/tools/schema/ apacheds/core-shared/...

Modified: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStackTest.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStackTest.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStackTest.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStackTest.java Sat Feb 11 21:50:03 2006
@@ -1,235 +1,235 @@
-/*
- *   Copyright 2004 The Apache Software Foundation
- *
- *   Licensed under the Apache License, Version 2.0 (the "License");
- *   you may not use this file except in compliance with the License.
- *   You may obtain a copy of the License at
- *
- *       http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing, software
- *   distributed under the License is distributed on an "AS IS" BASIS,
- *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *   See the License for the specific language governing permissions and
- *   limitations under the License.
- *
- */
-package org.apache.directory.shared.asn1.codec.stateful;
-
-
-import junit.framework.TestCase;
-
-import org.apache.directory.shared.asn1.codec.DecoderException;
-import org.apache.directory.shared.asn1.codec.stateful.AbstractStatefulDecoder;
-import org.apache.directory.shared.asn1.codec.stateful.CallbackHistory;
-import org.apache.directory.shared.asn1.codec.stateful.DecoderStack;
-import org.apache.directory.shared.asn1.codec.stateful.StatefulDecoder;
-
-
-/**
- * Tests the DecoderStack.
- * 
- * @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
- * @version $Rev$
- */
-public class DecoderStackTest extends TestCase
-{
-    /**
-     * Constructor for DecoderStackTest.
-     * 
-     * @param arg0
-     */
-    public DecoderStackTest(String arg0)
-    {
-        super( arg0 );
-    }
-
-
-    /**
-     * Tests the push method.
-     */
-    public void testPush()
-    {
-        DecoderStack stack = new DecoderStack();
-        assertNotNull( stack );
-        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
-        PassThroDecoder decoder = new PassThroDecoder();
-        stack.push( decoder );
-        assertFalse( "expecting non-empty stack after push", stack.isEmpty() );
-    }
-
-
-    /**
-     * Tests the pop method.
-     */
-    public void testPop()
-    {
-        DecoderStack stack = new DecoderStack();
-        assertNotNull( stack );
-        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
-        PassThroDecoder decoder = new PassThroDecoder();
-        stack.push( decoder );
-        assertFalse( "expecting non-empty stack after push", stack.isEmpty() );
-        StatefulDecoder popped = stack.pop();
-        assertTrue( "expecting empty stack after last pop", stack.isEmpty() );
-        assertNotNull( popped );
-        assertSame( "expecting last popped == last pushed", popped, decoder );
-        StatefulDecoder empty = stack.pop();
-        assertNotNull( "expecting empty pop to be non-null", empty );
-        assertNotSame( "expecting empty pop != last popped", popped, empty );
-        assertSame( "expecting empty pop == stack decoder", stack, empty );
-        assertTrue( "expecting empty stack after empty pop", stack.isEmpty() );
-    }
-
-
-    public void testDecode() throws Exception
-    {
-        DecoderStack stack = new DecoderStack();
-        CallbackHistory history = new CallbackHistory();
-        stack.setCallback( history );
-        assertNotNull( stack );
-        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
-        PassThroDecoder decoder = new PassThroDecoder();
-        stack.push( decoder );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 0 ), history.getMostRecent() );
-
-        assertFalse( "expecting non-empty stack after push", stack.isEmpty() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 1 ), history.getMostRecent() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 2 ), history.getMostRecent() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 3 ), history.getMostRecent() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 4 ), history.getMostRecent() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 5 ), history.getMostRecent() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 6 ), history.getMostRecent() );
-
-        stack.push( new IncrementingDecoder() );
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 7 ), history.getMostRecent() );
-
-        // start popping and decrementing now
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 6 ), history.getMostRecent() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 5 ), history.getMostRecent() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 4 ), history.getMostRecent() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 3 ), history.getMostRecent() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 2 ), history.getMostRecent() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 1 ), history.getMostRecent() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 0 ), history.getMostRecent() );
-
-        assertFalse( "expecting stack with passthrodecoder", stack.isEmpty() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 0 ), history.getMostRecent() );
-
-        assertTrue( "expecting empty stack after last pop", stack.isEmpty() );
-
-        stack.pop();
-        stack.decode( new Integer( 0 ) );
-        assertEquals( new Integer( 0 ), history.getMostRecent() );
-
-        assertTrue( "expecting empty stack after empty pop", stack.isEmpty() );
-    }
-
-
-    public void testFailure() throws Exception
-    {
-        DecoderStack stack = new DecoderStack();
-        CallbackHistory history = new CallbackHistory();
-        stack.setCallback( history );
-        assertNotNull( stack );
-        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
-        PassThroDecoder decoder = new PassThroDecoder();
-        stack.push( decoder );
-
-        stack.push( new FaultingDecoder() );
-
-        try
-        {
-            stack.decode( new Object() );
-            fail( "should never reach here due to exception throws" );
-        }
-        catch ( RuntimeException e )
-        {
-            assertNotNull( e );
-            assertTrue( "testing keyword should be in the message", e.getMessage().indexOf( "testing" ) > 0 );
-            assertTrue( "RuntimeException cause should be a DecoderException", e.getCause().getClass().equals(
-                DecoderException.class ) );
-        }
-    }
-
-    /**
-     * A do nothing decoder.
-     */
-    class PassThroDecoder extends AbstractStatefulDecoder
-    {
-        public void decode( Object encoded ) throws DecoderException
-        {
-            super.decodeOccurred( encoded );
-        }
-    }
-
-    /**
-     * A decoder that increments an Integer passed in as an argument. We're
-     * using this for verifying the additive (hehe) effects of decoder chaining.
-     */
-    class IncrementingDecoder extends AbstractStatefulDecoder
-    {
-        public void decode( Object encoded ) throws DecoderException
-        {
-            Integer value = ( Integer ) encoded;
-            value = new Integer( value.intValue() + 1 );
-            super.decodeOccurred( value );
-        }
-    }
-
-    /**
-     * A decoder that throws an exception on decode calls. We're using this for
-     * verifying the failure of the chain.
-     */
-    class FaultingDecoder extends AbstractStatefulDecoder
-    {
-        public void decode( Object encoded ) throws DecoderException
-        {
-            throw new DecoderException( "testing" );
-        }
-    }
-}
+/*
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+package org.apache.directory.shared.asn1.codec.stateful;
+
+
+import junit.framework.TestCase;
+
+import org.apache.directory.shared.asn1.codec.DecoderException;
+import org.apache.directory.shared.asn1.codec.stateful.AbstractStatefulDecoder;
+import org.apache.directory.shared.asn1.codec.stateful.CallbackHistory;
+import org.apache.directory.shared.asn1.codec.stateful.DecoderStack;
+import org.apache.directory.shared.asn1.codec.stateful.StatefulDecoder;
+
+
+/**
+ * Tests the DecoderStack.
+ * 
+ * @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
+ * @version $Rev$
+ */
+public class DecoderStackTest extends TestCase
+{
+    /**
+     * Constructor for DecoderStackTest.
+     * 
+     * @param arg0
+     */
+    public DecoderStackTest(String arg0)
+    {
+        super( arg0 );
+    }
+
+
+    /**
+     * Tests the push method.
+     */
+    public void testPush()
+    {
+        DecoderStack stack = new DecoderStack();
+        assertNotNull( stack );
+        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
+        PassThroDecoder decoder = new PassThroDecoder();
+        stack.push( decoder );
+        assertFalse( "expecting non-empty stack after push", stack.isEmpty() );
+    }
+
+
+    /**
+     * Tests the pop method.
+     */
+    public void testPop()
+    {
+        DecoderStack stack = new DecoderStack();
+        assertNotNull( stack );
+        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
+        PassThroDecoder decoder = new PassThroDecoder();
+        stack.push( decoder );
+        assertFalse( "expecting non-empty stack after push", stack.isEmpty() );
+        StatefulDecoder popped = stack.pop();
+        assertTrue( "expecting empty stack after last pop", stack.isEmpty() );
+        assertNotNull( popped );
+        assertSame( "expecting last popped == last pushed", popped, decoder );
+        StatefulDecoder empty = stack.pop();
+        assertNotNull( "expecting empty pop to be non-null", empty );
+        assertNotSame( "expecting empty pop != last popped", popped, empty );
+        assertSame( "expecting empty pop == stack decoder", stack, empty );
+        assertTrue( "expecting empty stack after empty pop", stack.isEmpty() );
+    }
+
+
+    public void testDecode() throws Exception
+    {
+        DecoderStack stack = new DecoderStack();
+        CallbackHistory history = new CallbackHistory();
+        stack.setCallback( history );
+        assertNotNull( stack );
+        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
+        PassThroDecoder decoder = new PassThroDecoder();
+        stack.push( decoder );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 0 ), history.getMostRecent() );
+
+        assertFalse( "expecting non-empty stack after push", stack.isEmpty() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 1 ), history.getMostRecent() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 2 ), history.getMostRecent() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 3 ), history.getMostRecent() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 4 ), history.getMostRecent() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 5 ), history.getMostRecent() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 6 ), history.getMostRecent() );
+
+        stack.push( new IncrementingDecoder() );
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 7 ), history.getMostRecent() );
+
+        // start popping and decrementing now
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 6 ), history.getMostRecent() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 5 ), history.getMostRecent() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 4 ), history.getMostRecent() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 3 ), history.getMostRecent() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 2 ), history.getMostRecent() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 1 ), history.getMostRecent() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 0 ), history.getMostRecent() );
+
+        assertFalse( "expecting stack with passthrodecoder", stack.isEmpty() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 0 ), history.getMostRecent() );
+
+        assertTrue( "expecting empty stack after last pop", stack.isEmpty() );
+
+        stack.pop();
+        stack.decode( new Integer( 0 ) );
+        assertEquals( new Integer( 0 ), history.getMostRecent() );
+
+        assertTrue( "expecting empty stack after empty pop", stack.isEmpty() );
+    }
+
+
+    public void testFailure() throws Exception
+    {
+        DecoderStack stack = new DecoderStack();
+        CallbackHistory history = new CallbackHistory();
+        stack.setCallback( history );
+        assertNotNull( stack );
+        assertTrue( "expecting empty stack after creation", stack.isEmpty() );
+        PassThroDecoder decoder = new PassThroDecoder();
+        stack.push( decoder );
+
+        stack.push( new FaultingDecoder() );
+
+        try
+        {
+            stack.decode( new Object() );
+            fail( "should never reach here due to exception throws" );
+        }
+        catch ( RuntimeException e )
+        {
+            assertNotNull( e );
+            assertTrue( "testing keyword should be in the message", e.getMessage().indexOf( "testing" ) > 0 );
+            assertTrue( "RuntimeException cause should be a DecoderException", e.getCause().getClass().equals(
+                DecoderException.class ) );
+        }
+    }
+
+    /**
+     * A do nothing decoder.
+     */
+    class PassThroDecoder extends AbstractStatefulDecoder
+    {
+        public void decode( Object encoded ) throws DecoderException
+        {
+            super.decodeOccurred( encoded );
+        }
+    }
+
+    /**
+     * A decoder that increments an Integer passed in as an argument. We're
+     * using this for verifying the additive (hehe) effects of decoder chaining.
+     */
+    class IncrementingDecoder extends AbstractStatefulDecoder
+    {
+        public void decode( Object encoded ) throws DecoderException
+        {
+            Integer value = ( Integer ) encoded;
+            value = new Integer( value.intValue() + 1 );
+            super.decodeOccurred( value );
+        }
+    }
+
+    /**
+     * A decoder that throws an exception on decode calls. We're using this for
+     * verifying the failure of the chain.
+     */
+    class FaultingDecoder extends AbstractStatefulDecoder
+    {
+        public void decode( Object encoded ) throws DecoderException
+        {
+            throw new DecoderException( "testing" );
+        }
+    }
+}

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStackTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStackTest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
 Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/examples/HexDecoderTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/examples/HexDecoderTest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
 Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/examples/HexEncoderTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/codec/stateful/examples/HexEncoderTest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
 Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/primitives/BitStringTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/primitives/BitStringTest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/primitives/OIDTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/primitives/OIDTest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/primitives/PrimitivesTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/asn1/src/test/java/org/apache/directory/shared/asn1/primitives/PrimitivesTest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/MultiException.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/MultiException.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/MultiException.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/MultiException.java Sat Feb 11 21:50:03 2006
@@ -1,184 +1,184 @@
-/*
- *   Copyright 2004 The Apache Software Foundation
- *
- *   Licensed under the Apache License, Version 2.0 (the "License");
- *   you may not use this file except in compliance with the License.
- *   You may obtain a copy of the License at
- *
- *       http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing, software
- *   distributed under the License is distributed on an "AS IS" BASIS,
- *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *   See the License for the specific language governing permissions and
- *   limitations under the License.
- *
- */
-
-package org.apache.directory.shared.ldap;
-
-
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.Collection;
-
-import java.io.PrintWriter;
-import java.io.PrintStream;
-
-
-/**
- * This exception is thrown when Base class for nested exceptions.
- * 
- * @author <a href="mailto:aok123@bellsouth.net">Alex Karasulu</a>
- * @author $Author: akarasulu $
- * @version $Revision$
- */
-public class MultiException extends Exception
-{
-    static final long serialVersionUID = 2889747406899775761L;
-
-    /** Collection of nested exceptions. */
-    private Collection m_nestedExceptions = new ArrayList();
-
-
-    /**
-     * Constructs an Exception without a message.
-     */
-    public MultiException()
-    {
-        super();
-    }
-
-
-    /**
-     * Constructs an Exception with a detailed message.
-     * 
-     * @param a_message
-     *            The message associated with the exception.
-     */
-    public MultiException(String a_message)
-    {
-        super( a_message );
-    }
-
-
-    /**
-     * Lists the nested exceptions that this Exception encapsulates.
-     * 
-     * @return an Iterator over the nested exceptions.
-     */
-    public Iterator listNestedExceptions()
-    {
-        return m_nestedExceptions.iterator();
-    }
-
-
-    /**
-     * Gets the size of this nested exception which equals the number of
-     * exception nested within.
-     * 
-     * @return the size of this nested exception.
-     */
-    public int size()
-    {
-        return m_nestedExceptions.size();
-    }
-
-
-    /**
-     * Tests to see if there are any nested exceptions within this
-     * MultiException.
-     * 
-     * @return true if no exceptions are nested, false otherwise.
-     */
-    public boolean isEmpty()
-    {
-        return m_nestedExceptions.isEmpty();
-    }
-
-
-    /**
-     * Add an exeception to this multiexception.
-     * 
-     * @param a_nested
-     *            exception to add to this MultiException.
-     */
-    public void addThrowable( Throwable a_nested )
-    {
-        this.m_nestedExceptions.add( a_nested );
-    }
-
-
-    // ///////////////////////////////////////////
-    // Overriden Throwable Stack Trace Methods //
-    // ///////////////////////////////////////////
-
-    /**
-     * Beside printing out the standard stack trace this method prints out the
-     * stack traces of all the nested exceptions.
-     * 
-     * @param an_out
-     *            PrintWriter to write the nested stack trace to.
-     */
-    public void printStackTrace( PrintWriter an_out )
-    {
-        super.printStackTrace( an_out );
-
-        an_out.println( "Nested exceptions to follow:\n" );
-        Iterator l_list = listNestedExceptions();
-        Throwable l_throwable = null;
-        while ( l_list.hasNext() )
-        {
-            l_throwable = ( Throwable ) l_list.next();
-            l_throwable.printStackTrace();
-            if ( l_list.hasNext() )
-            {
-                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
-            }
-            else
-            {
-                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
-            }
-        }
-    }
-
-
-    /**
-     * Beside printing out the standard stack trace this method prints out the
-     * stack traces of all the nested exceptions.
-     * 
-     * @param an_out
-     *            PrintStream to write the nested stack trace to.
-     */
-    public void printStackTrace( PrintStream an_out )
-    {
-        super.printStackTrace( an_out );
-
-        an_out.println( "Nested exceptions to follow:\n" );
-        Iterator l_list = listNestedExceptions();
-        Throwable l_throwable = null;
-        while ( l_list.hasNext() )
-        {
-            l_throwable = ( Throwable ) l_list.next();
-            l_throwable.printStackTrace();
-            if ( l_list.hasNext() )
-            {
-                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
-            }
-            else
-            {
-                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
-            }
-        }
-    }
-
-
-    /**
-     * Beside printing out the standard stack trace this method prints out the
-     * stack traces of all the nested exceptions using standard error.
-     */
-    public void printStackTrace()
-    {
-        this.printStackTrace( System.err );
-    }
-}
+/*
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+
+package org.apache.directory.shared.ldap;
+
+
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.Collection;
+
+import java.io.PrintWriter;
+import java.io.PrintStream;
+
+
+/**
+ * This exception is thrown when Base class for nested exceptions.
+ * 
+ * @author <a href="mailto:aok123@bellsouth.net">Alex Karasulu</a>
+ * @author $Author: akarasulu $
+ * @version $Revision$
+ */
+public class MultiException extends Exception
+{
+    static final long serialVersionUID = 2889747406899775761L;
+
+    /** Collection of nested exceptions. */
+    private Collection m_nestedExceptions = new ArrayList();
+
+
+    /**
+     * Constructs an Exception without a message.
+     */
+    public MultiException()
+    {
+        super();
+    }
+
+
+    /**
+     * Constructs an Exception with a detailed message.
+     * 
+     * @param a_message
+     *            The message associated with the exception.
+     */
+    public MultiException(String a_message)
+    {
+        super( a_message );
+    }
+
+
+    /**
+     * Lists the nested exceptions that this Exception encapsulates.
+     * 
+     * @return an Iterator over the nested exceptions.
+     */
+    public Iterator listNestedExceptions()
+    {
+        return m_nestedExceptions.iterator();
+    }
+
+
+    /**
+     * Gets the size of this nested exception which equals the number of
+     * exception nested within.
+     * 
+     * @return the size of this nested exception.
+     */
+    public int size()
+    {
+        return m_nestedExceptions.size();
+    }
+
+
+    /**
+     * Tests to see if there are any nested exceptions within this
+     * MultiException.
+     * 
+     * @return true if no exceptions are nested, false otherwise.
+     */
+    public boolean isEmpty()
+    {
+        return m_nestedExceptions.isEmpty();
+    }
+
+
+    /**
+     * Add an exeception to this multiexception.
+     * 
+     * @param a_nested
+     *            exception to add to this MultiException.
+     */
+    public void addThrowable( Throwable a_nested )
+    {
+        this.m_nestedExceptions.add( a_nested );
+    }
+
+
+    // ///////////////////////////////////////////
+    // Overriden Throwable Stack Trace Methods //
+    // ///////////////////////////////////////////
+
+    /**
+     * Beside printing out the standard stack trace this method prints out the
+     * stack traces of all the nested exceptions.
+     * 
+     * @param an_out
+     *            PrintWriter to write the nested stack trace to.
+     */
+    public void printStackTrace( PrintWriter an_out )
+    {
+        super.printStackTrace( an_out );
+
+        an_out.println( "Nested exceptions to follow:\n" );
+        Iterator l_list = listNestedExceptions();
+        Throwable l_throwable = null;
+        while ( l_list.hasNext() )
+        {
+            l_throwable = ( Throwable ) l_list.next();
+            l_throwable.printStackTrace();
+            if ( l_list.hasNext() )
+            {
+                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
+            }
+            else
+            {
+                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
+            }
+        }
+    }
+
+
+    /**
+     * Beside printing out the standard stack trace this method prints out the
+     * stack traces of all the nested exceptions.
+     * 
+     * @param an_out
+     *            PrintStream to write the nested stack trace to.
+     */
+    public void printStackTrace( PrintStream an_out )
+    {
+        super.printStackTrace( an_out );
+
+        an_out.println( "Nested exceptions to follow:\n" );
+        Iterator l_list = listNestedExceptions();
+        Throwable l_throwable = null;
+        while ( l_list.hasNext() )
+        {
+            l_throwable = ( Throwable ) l_list.next();
+            l_throwable.printStackTrace();
+            if ( l_list.hasNext() )
+            {
+                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
+            }
+            else
+            {
+                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
+            }
+        }
+    }
+
+
+    /**
+     * Beside printing out the standard stack trace this method prints out the
+     * stack traces of all the nested exceptions using standard error.
+     */
+    public void printStackTrace()
+    {
+        this.printStackTrace( System.err );
+    }
+}

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/MultiException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/MultiException.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
 Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/NotImplementedException.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/NotImplementedException.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/NotImplementedException.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/NotImplementedException.java Sat Feb 11 21:50:03 2006
@@ -16,7 +16,7 @@
  */
 
 /*
- $Id: NotImplementedException.java,v 1.4 2003/07/29 21:17:34 akarasulu Exp $
+ $Id$
 
  -- (c) LDAPd Group                                                    --
  -- Please refer to the LICENSE.txt file in the root directory of      --

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/NotImplementedException.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
 Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/RuntimeMultiException.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/RuntimeMultiException.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/RuntimeMultiException.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/RuntimeMultiException.java Sat Feb 11 21:50:03 2006
@@ -1,182 +1,182 @@
-/*
- *   Copyright 2004 The Apache Software Foundation
- *
- *   Licensed under the Apache License, Version 2.0 (the "License");
- *   you may not use this file except in compliance with the License.
- *   You may obtain a copy of the License at
- *
- *       http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing, software
- *   distributed under the License is distributed on an "AS IS" BASIS,
- *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *   See the License for the specific language governing permissions and
- *   limitations under the License.
- *
- */
-
-package org.apache.directory.shared.ldap;
-
-
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.Collection;
-
-import java.io.PrintWriter;
-import java.io.PrintStream;
-
-
-/**
- * This exception is thrown when Base class for nested exceptions.
- * 
- * @author <a href="mailto:aok123@bellsouth.net">Alex Karasulu</a>
- * @author $Author: akarasulu $
- * @version $Revision$
- */
-public class RuntimeMultiException extends RuntimeException
-{
-    static final long serialVersionUID = 8582253398936366771L;
-
-    /** Collection of nested exceptions. */
-    private Collection m_nestedExceptions = new ArrayList();
-
-
-    /**
-     * Constructs an Exception without a message.
-     */
-    public RuntimeMultiException()
-    {
-        super();
-    }
-
-
-    /**
-     * Constructs an Exception with a detailed message.
-     * 
-     * @param a_message
-     *            The message associated with the exception.
-     */
-    public RuntimeMultiException(String a_message)
-    {
-        super( a_message );
-    }
-
-
-    /**
-     * Lists the nested exceptions that this Exception encapsulates.
-     * 
-     * @return an Iterator over the nested exceptions.
-     */
-    public Iterator listNestedExceptions()
-    {
-        return m_nestedExceptions.iterator();
-    }
-
-
-    /**
-     * Gets the size (number of) exceptions nested within this exception.
-     * 
-     * @return the size of this nested exception.
-     */
-    public int size()
-    {
-        return m_nestedExceptions.size();
-    }
-
-
-    /**
-     * Tests to see if exceptions are nested within this exception.
-     * 
-     * @return true if an exception is nested, false otherwise
-     */
-    public boolean isEmpty()
-    {
-        return m_nestedExceptions.isEmpty();
-    }
-
-
-    /**
-     * Add an exeception to this multiexception.
-     * 
-     * @param a_nested
-     *            exception to add to this MultiException.
-     */
-    public void addThrowable( Throwable a_nested )
-    {
-        this.m_nestedExceptions.add( a_nested );
-    }
-
-
-    // ///////////////////////////////////////////
-    // Overriden Throwable Stack Trace Methods //
-    // ///////////////////////////////////////////
-
-    /**
-     * Beside printing out the standard stack trace this method prints out the
-     * stack traces of all the nested exceptions.
-     * 
-     * @param an_out
-     *            PrintWriter to write the nested stack trace to.
-     */
-    public void printStackTrace( PrintWriter an_out )
-    {
-        super.printStackTrace( an_out );
-
-        an_out.println( "Nested exceptions to follow:\n" );
-        Iterator l_list = listNestedExceptions();
-        Throwable l_throwable = null;
-        while ( l_list.hasNext() )
-        {
-            l_throwable = ( Throwable ) l_list.next();
-            l_throwable.printStackTrace();
-            if ( l_list.hasNext() )
-            {
-                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
-            }
-            else
-            {
-                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
-            }
-        }
-    }
-
-
-    /**
-     * Beside printing out the standard stack trace this method prints out the
-     * stack traces of all the nested exceptions.
-     * 
-     * @param an_out
-     *            PrintStream to write the nested stack trace to.
-     */
-    public void printStackTrace( PrintStream an_out )
-    {
-        super.printStackTrace( an_out );
-
-        an_out.println( "Nested exceptions to follow:\n" );
-        Iterator l_list = listNestedExceptions();
-        Throwable l_throwable = null;
-        while ( l_list.hasNext() )
-        {
-            l_throwable = ( Throwable ) l_list.next();
-            l_throwable.printStackTrace();
-            if ( l_list.hasNext() )
-            {
-                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
-            }
-            else
-            {
-                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
-            }
-        }
-    }
-
-
-    /**
-     * Beside printing out the standard stack trace this method prints out the
-     * stack traces of all the nested exceptions using standard error.
-     */
-    public void printStackTrace()
-    {
-        this.printStackTrace( System.err );
-    }
-}
+/*
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+
+package org.apache.directory.shared.ldap;
+
+
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.Collection;
+
+import java.io.PrintWriter;
+import java.io.PrintStream;
+
+
+/**
+ * This exception is thrown when Base class for nested exceptions.
+ * 
+ * @author <a href="mailto:aok123@bellsouth.net">Alex Karasulu</a>
+ * @author $Author: akarasulu $
+ * @version $Revision$
+ */
+public class RuntimeMultiException extends RuntimeException
+{
+    static final long serialVersionUID = 8582253398936366771L;
+
+    /** Collection of nested exceptions. */
+    private Collection m_nestedExceptions = new ArrayList();
+
+
+    /**
+     * Constructs an Exception without a message.
+     */
+    public RuntimeMultiException()
+    {
+        super();
+    }
+
+
+    /**
+     * Constructs an Exception with a detailed message.
+     * 
+     * @param a_message
+     *            The message associated with the exception.
+     */
+    public RuntimeMultiException(String a_message)
+    {
+        super( a_message );
+    }
+
+
+    /**
+     * Lists the nested exceptions that this Exception encapsulates.
+     * 
+     * @return an Iterator over the nested exceptions.
+     */
+    public Iterator listNestedExceptions()
+    {
+        return m_nestedExceptions.iterator();
+    }
+
+
+    /**
+     * Gets the size (number of) exceptions nested within this exception.
+     * 
+     * @return the size of this nested exception.
+     */
+    public int size()
+    {
+        return m_nestedExceptions.size();
+    }
+
+
+    /**
+     * Tests to see if exceptions are nested within this exception.
+     * 
+     * @return true if an exception is nested, false otherwise
+     */
+    public boolean isEmpty()
+    {
+        return m_nestedExceptions.isEmpty();
+    }
+
+
+    /**
+     * Add an exeception to this multiexception.
+     * 
+     * @param a_nested
+     *            exception to add to this MultiException.
+     */
+    public void addThrowable( Throwable a_nested )
+    {
+        this.m_nestedExceptions.add( a_nested );
+    }
+
+
+    // ///////////////////////////////////////////
+    // Overriden Throwable Stack Trace Methods //
+    // ///////////////////////////////////////////
+
+    /**
+     * Beside printing out the standard stack trace this method prints out the
+     * stack traces of all the nested exceptions.
+     * 
+     * @param an_out
+     *            PrintWriter to write the nested stack trace to.
+     */
+    public void printStackTrace( PrintWriter an_out )
+    {
+        super.printStackTrace( an_out );
+
+        an_out.println( "Nested exceptions to follow:\n" );
+        Iterator l_list = listNestedExceptions();
+        Throwable l_throwable = null;
+        while ( l_list.hasNext() )
+        {
+            l_throwable = ( Throwable ) l_list.next();
+            l_throwable.printStackTrace();
+            if ( l_list.hasNext() )
+            {
+                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
+            }
+            else
+            {
+                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
+            }
+        }
+    }
+
+
+    /**
+     * Beside printing out the standard stack trace this method prints out the
+     * stack traces of all the nested exceptions.
+     * 
+     * @param an_out
+     *            PrintStream to write the nested stack trace to.
+     */
+    public void printStackTrace( PrintStream an_out )
+    {
+        super.printStackTrace( an_out );
+
+        an_out.println( "Nested exceptions to follow:\n" );
+        Iterator l_list = listNestedExceptions();
+        Throwable l_throwable = null;
+        while ( l_list.hasNext() )
+        {
+            l_throwable = ( Throwable ) l_list.next();
+            l_throwable.printStackTrace();
+            if ( l_list.hasNext() )
+            {
+                an_out.println( "\n\t<<========= Next Nested Exception" + " ========>>\n" );
+            }
+            else
+            {
+                an_out.println( "\n\t<<========= Last Nested Exception" + " ========>>\n" );
+            }
+        }
+    }
+
+
+    /**
+     * Beside printing out the standard stack trace this method prints out the
+     * stack traces of all the nested exceptions using standard error.
+     */
+    public void printStackTrace()
+    {
+        this.printStackTrace( System.err );
+    }
+}

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/RuntimeMultiException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/RuntimeMultiException.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
 Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ACIItem.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ACIItem.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ACIItemParser.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ACITuple.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ACITuple.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/AuthenticationLevel.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/AuthenticationLevel.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/GrantAndDenial.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/GrantAndDenial.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ItemFirstACIItem.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ItemFirstACIItem.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ItemPermission.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ItemPermission.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/MicroOperation.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/MicroOperation.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/MicroOperation.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/MicroOperation.java Sat Feb 11 21:50:03 2006
@@ -1,85 +1,85 @@
-/*
- *   @(#) $Id$
- *
- *   Copyright 2004 The Apache Software Foundation
- *
- *   Licensed under the Apache License, Version 2.0 (the "License");
- *   you may not use this file except in compliance with the License.
- *   You may obtain a copy of the License at
- *
- *       http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing, software
- *   distributed under the License is distributed on an "AS IS" BASIS,
- *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *   See the License for the specific language governing permissions and
- *   limitations under the License.
- *
- */
-package org.apache.directory.shared.ldap.aci;
-
-
-/**
- * An enumeration that represents all micro-operations that makes up LDAP
- * operations.
- * 
- * @author The Apache Directory Project
- * @version $Rev$, $Date$
- */
-public class MicroOperation
-{
-    // Permissions that may be used in conjunction with any component of
-    // <tt>ProtectedItem</tt>s.
-    public static final MicroOperation ADD = new MicroOperation( "Add" );
-
-    public static final MicroOperation DISCLOSE_ON_ERROR = new MicroOperation( "DiscloseOnError" );
-
-    public static final MicroOperation READ = new MicroOperation( "Read" );
-
-    public static final MicroOperation REMOVE = new MicroOperation( "Remove" );
-
-    // Permissions that may be used only in conjunction with the entry
-    // component.
-    public static final MicroOperation BROWSE = new MicroOperation( "Browse" );
-
-    public static final MicroOperation EXPORT = new MicroOperation( "Export" );
-
-    public static final MicroOperation IMPORT = new MicroOperation( "Import" );
-
-    public static final MicroOperation MODIFY = new MicroOperation( "Modify" );
-
-    public static final MicroOperation RENAME = new MicroOperation( "Rename" );
-
-    public static final MicroOperation RETURN_DN = new MicroOperation( "ReturnDN" );
-
-    // Permissions that may be used in conjunction with any component,
-    // except entry, of <tt>ProtectedItem</tt>s.
-    public static final MicroOperation COMPARE = new MicroOperation( "Compare" );
-
-    public static final MicroOperation FILTER_MATCH = new MicroOperation( "FilterMatch" );
-
-    public static final MicroOperation INVOKE = new MicroOperation( "Invoke" );
-
-    private final String name;
-
-
-    private MicroOperation(String name)
-    {
-        this.name = name;
-    }
-
-
-    /**
-     * Returns the name of this micro-operation.
-     */
-    public String getName()
-    {
-        return name;
-    }
-
-
-    public String toString()
-    {
-        return name;
-    }
-}
+/*
+ *   @(#) $Id$
+ *
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+package org.apache.directory.shared.ldap.aci;
+
+
+/**
+ * An enumeration that represents all micro-operations that makes up LDAP
+ * operations.
+ * 
+ * @author The Apache Directory Project
+ * @version $Rev$, $Date$
+ */
+public class MicroOperation
+{
+    // Permissions that may be used in conjunction with any component of
+    // <tt>ProtectedItem</tt>s.
+    public static final MicroOperation ADD = new MicroOperation( "Add" );
+
+    public static final MicroOperation DISCLOSE_ON_ERROR = new MicroOperation( "DiscloseOnError" );
+
+    public static final MicroOperation READ = new MicroOperation( "Read" );
+
+    public static final MicroOperation REMOVE = new MicroOperation( "Remove" );
+
+    // Permissions that may be used only in conjunction with the entry
+    // component.
+    public static final MicroOperation BROWSE = new MicroOperation( "Browse" );
+
+    public static final MicroOperation EXPORT = new MicroOperation( "Export" );
+
+    public static final MicroOperation IMPORT = new MicroOperation( "Import" );
+
+    public static final MicroOperation MODIFY = new MicroOperation( "Modify" );
+
+    public static final MicroOperation RENAME = new MicroOperation( "Rename" );
+
+    public static final MicroOperation RETURN_DN = new MicroOperation( "ReturnDN" );
+
+    // Permissions that may be used in conjunction with any component,
+    // except entry, of <tt>ProtectedItem</tt>s.
+    public static final MicroOperation COMPARE = new MicroOperation( "Compare" );
+
+    public static final MicroOperation FILTER_MATCH = new MicroOperation( "FilterMatch" );
+
+    public static final MicroOperation INVOKE = new MicroOperation( "Invoke" );
+
+    private final String name;
+
+
+    private MicroOperation(String name)
+    {
+        this.name = name;
+    }
+
+
+    /**
+     * Returns the name of this micro-operation.
+     */
+    public String getName()
+    {
+        return name;
+    }
+
+
+    public String toString()
+    {
+        return name;
+    }
+}

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/MicroOperation.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/MicroOperation.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/Permission.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/Permission.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ProtectedItem.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ProtectedItem.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ReusableAntlrACIItemLexer.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/ReusableAntlrACIItemParser.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/UserClass.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/UserClass.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/UserFirstACIItem.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/UserFirstACIItem.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/UserPermission.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/aci/UserPermission.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -1 +1,4 @@
-HeadURL Id LastChangedBy LastChangedDate LastChangedRevision
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/AttributeValueAssertion.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/Control.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/ControlDecoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/ControlValueAction.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapConstants.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapControlGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapDecoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapMessage.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapMessageContainer.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapMessageGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapResult.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapResultGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/LdapStatesEnum.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/ManageDsaITControl.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/ManageDsaITControlDecoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixDecoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixEncoder.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixEncoder.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixEncoder.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixEncoder.java Sat Feb 11 21:50:03 2006
@@ -39,7 +39,7 @@
  * Twix LDAP BER provider's encoder.
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
- * @version $Rev: 158973 $
+ * @version $Rev$
  */
 public class TwixEncoder implements ProviderEncoder
 {

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixEncoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixProvider.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixProvider.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixProvider.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixProvider.java Sat Feb 11 21:50:03 2006
@@ -32,7 +32,7 @@
  * The Twix specific BER provider for LDAP.
  * 
  * @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
- *         $Rev: 157671 $
+ *         $Rev$
  */
 public class TwixProvider extends Provider
 {

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixProvider.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Modified: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixTransformer.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixTransformer.java?rev=377135&r1=377134&r2=377135&view=diff
==============================================================================
--- directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixTransformer.java (original)
+++ directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixTransformer.java Sat Feb 11 21:50:03 2006
@@ -116,7 +116,7 @@
  * A Twix to Snickers Message transformer.
  * 
  * @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
- *         $Rev: 157671 $
+ *         $Rev$
  */
 public class TwixTransformer implements TransformerSpi
 {

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/TwixTransformer.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/abandon/AbandonRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/abandon/AbandonRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/add/AddRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/add/AddRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/add/AddResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/add/AddResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/BindRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/BindRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/BindResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/BindResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/LdapAuthentication.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/SaslCredentials.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/bind/SimpleAuthentication.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/compare/CompareRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/compare/CompareRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/compare/CompareResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/compare/CompareResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/del/DelRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/del/DelRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/del/DelResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/del/DelResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/ExtendedRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/ExtendedRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/ExtendedResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/ExtendedResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulAction.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulAction.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulActionConstants.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulActionConstants.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnect.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnect.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectContainer.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectContainer.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectDecoder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectDecoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectGrammar.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectStatesEnum.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulDisconnectStatesEnum.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdown.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdown.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownContainer.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownContainer.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownDecoder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownDecoder.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownGrammar.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownStatesEnum.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/extended/operations/GracefulShutdownStatesEnum.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modify/ModifyRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modify/ModifyRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modify/ModifyResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modify/ModifyResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modifyDn/ModifyDNRequest.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modifyDn/ModifyDNRequestGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modifyDn/ModifyDNResponse.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/modifyDn/ModifyDNResponseGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/AndFilter.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/AttributeValueAssertionFilter.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/ConnectorFilter.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/ExtensibleMatchFilter.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/Filter.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/FilterGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/MatchingRuleAssertionGrammar.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/sandbox/akarasulu/rc1/shared/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/MatchingRuleAssertionGrammar.java
------------------------------------------------------------------------------
--- svn:keywords (added)
+++ svn:keywords Sat Feb 11 21:50:03 2006
@@ -0,0 +1,4 @@
+Rev
+Revision
+Date
+Id