You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/06/21 02:52:21 UTC

svn commit: r191607 - in /directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi: ContextPartitionNexusProxy.java DefaultContextFactoryConfiguration.java RootNexusProxy.java

Author: trustin
Date: Mon Jun 20 17:52:21 2005
New Revision: 191607

URL: http://svn.apache.org/viewcvs?rev=191607&view=rev
Log:
Renamed RootNexusProxy to ContextPartitionNexusProxy

Added:
    directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/ContextPartitionNexusProxy.java
      - copied, changed from r191503, directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/RootNexusProxy.java
Removed:
    directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/RootNexusProxy.java
Modified:
    directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/DefaultContextFactoryConfiguration.java

Copied: directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/ContextPartitionNexusProxy.java (from r191503, directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/RootNexusProxy.java)
URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/ContextPartitionNexusProxy.java?p2=directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/ContextPartitionNexusProxy.java&p1=directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/RootNexusProxy.java&r1=191503&r2=191607&rev=191607&view=diff
==============================================================================
--- directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/RootNexusProxy.java (original)
+++ directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/ContextPartitionNexusProxy.java Mon Jun 20 17:52:21 2005
@@ -48,11 +48,11 @@
 import org.apache.ldap.server.partition.ContextPartition;
 import org.apache.ldap.server.partition.ContextPartitionNexus;
 
-class RootNexusProxy extends ContextPartitionNexus
+class ContextPartitionNexusProxy extends ContextPartitionNexus
 {
     private final ContextFactoryConfiguration provider;
 
-    RootNexusProxy( ContextFactoryConfiguration provider )
+    ContextPartitionNexusProxy( ContextFactoryConfiguration provider )
     {
         this.provider = provider;
     }

Modified: directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/DefaultContextFactoryConfiguration.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/DefaultContextFactoryConfiguration.java?rev=191607&r1=191606&r2=191607&view=diff
==============================================================================
--- directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/DefaultContextFactoryConfiguration.java (original)
+++ directory/apacheds/branches/db_refactor/core/src/main/java/org/apache/ldap/server/jndi/DefaultContextFactoryConfiguration.java Mon Jun 20 17:52:21 2005
@@ -79,7 +79,7 @@
     private InterceptorChain interceptorChain;
     
     /** PartitionNexus proxy wrapping nexus to inject services */
-    private final ContextPartitionNexus proxy = new RootNexusProxy(this);
+    private final ContextPartitionNexus proxy = new ContextPartitionNexusProxy(this);
 
     /** whether or not this instance has been shutdown */
     private boolean started = false;