You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/04/11 18:44:19 UTC

svn commit: r527574 - /directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/interceptor/InterceptorChainTest.java

Author: elecharny
Date: Wed Apr 11 09:44:17 2007
New Revision: 527574

URL: http://svn.apache.org/viewvc?view=rev&rev=527574
Log:
Changed the move( old, new) operation to replace( ServiceContext )

Modified:
    directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/interceptor/InterceptorChainTest.java

Modified: directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/interceptor/InterceptorChainTest.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/interceptor/InterceptorChainTest.java?view=diff&rev=527574&r1=527573&r2=527574
==============================================================================
--- directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/interceptor/InterceptorChainTest.java (original)
+++ directory/apacheds/trunk/core/src/test/java/org/apache/directory/server/core/interceptor/InterceptorChainTest.java Wed Apr 11 09:44:17 2007
@@ -405,10 +405,10 @@
         }
 
 
-        public void move( NextInterceptor next, LdapDN oldName, LdapDN newParentName ) throws NamingException
+        public void replace( NextInterceptor next, ServiceContext replaceContext ) throws NamingException
         {
             interceptors.add( this );
-            next.move( oldName, newParentName );
+            next.replace( replaceContext );
         }