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 2010/06/14 15:43:25 UTC

svn commit: r954468 - /directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java

Author: elecharny
Date: Mon Jun 14 13:43:24 2010
New Revision: 954468

URL: http://svn.apache.org/viewvc?rev=954468&view=rev
Log:
Renamed the opContext param to moveAndRenameContext for the MoveAndRename operation

Modified:
    directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java

Modified: directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java?rev=954468&r1=954467&r2=954468&view=diff
==============================================================================
--- directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java (original)
+++ directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java Mon Jun 14 13:43:24 2010
@@ -161,9 +161,9 @@ public class InterceptorChain
         }
 
 
-        public void moveAndRename( NextInterceptor next, MoveAndRenameOperationContext opContext ) throws LdapException
+        public void moveAndRename( NextInterceptor next, MoveAndRenameOperationContext moveAndRenameContext ) throws LdapException
         {
-            nexus.moveAndRename( opContext );
+            nexus.moveAndRename( moveAndRenameContext );
         }
 
 
@@ -1172,14 +1172,14 @@ public class InterceptorChain
                 }
 
 
-                public void moveAndRename( MoveAndRenameOperationContext opContext ) throws LdapException
+                public void moveAndRename( MoveAndRenameOperationContext moveAndRenameContext ) throws LdapException
                 {
                     Element next = getNextEntry();
                     Interceptor interceptor = next.interceptor;
 
                     try
                     {
-                        interceptor.moveAndRename( next.nextInterceptor, opContext );
+                        interceptor.moveAndRename( next.nextInterceptor, moveAndRenameContext );
                     }
                     catch ( LdapException le )
                     {