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/13 13:58:08 UTC

svn commit: r528446 [2/2] - in /directory/apacheds/trunk/core/src: main/java/org/apache/directory/server/core/authn/ main/java/org/apache/directory/server/core/authz/ main/java/org/apache/directory/server/core/event/ main/java/org/apache/directory/serv...

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=528446&r1=528445&r2=528446
==============================================================================
--- 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 Fri Apr 13 04:58:06 2007
@@ -397,26 +397,26 @@
         }
 
 
-        public void modifyRn( NextInterceptor next, ServiceContext modifyDnContext )
+        public void rename( NextInterceptor next, ServiceContext renameContext )
             throws NamingException
         {
             interceptors.add( this );
-            next.modifyRn( modifyDnContext );
+            next.rename( renameContext );
         }
 
 
-        public void replace( NextInterceptor next, ServiceContext replaceContext ) throws NamingException
+        public void move( NextInterceptor next, ServiceContext moveContext ) throws NamingException
         {
             interceptors.add( this );
-            next.replace( replaceContext );
+            next.move( moveContext );
         }
 
 
-        public void move( NextInterceptor next, ServiceContext moveContext )
+        public void moveAndRename( NextInterceptor next, ServiceContext moveAndRenameContext )
             throws NamingException
         {
             interceptors.add( this );
-            next.move( moveContext );
+            next.moveAndRename( moveAndRenameContext );
         }