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 2006/08/01 13:28:13 UTC

svn commit: r427536 - /directory/trunks/apacheds/core/src/main/java/org/apache/directory/server/core/partition/PartitionNexusProxy.java

Author: elecharny
Date: Tue Aug  1 04:28:12 2006
New Revision: 427536

URL: http://svn.apache.org/viewvc?rev=427536&view=rev
Log:
Fixed issue DIRSERVER_689

Modified:
    directory/trunks/apacheds/core/src/main/java/org/apache/directory/server/core/partition/PartitionNexusProxy.java

Modified: directory/trunks/apacheds/core/src/main/java/org/apache/directory/server/core/partition/PartitionNexusProxy.java
URL: http://svn.apache.org/viewvc/directory/trunks/apacheds/core/src/main/java/org/apache/directory/server/core/partition/PartitionNexusProxy.java?rev=427536&r1=427535&r2=427536&view=diff
==============================================================================
--- directory/trunks/apacheds/core/src/main/java/org/apache/directory/server/core/partition/PartitionNexusProxy.java (original)
+++ directory/trunks/apacheds/core/src/main/java/org/apache/directory/server/core/partition/PartitionNexusProxy.java Tue Aug  1 04:28:12 2006
@@ -64,6 +64,8 @@
     public static final Collection LOOKUP_BYPASS;
     /** safe to use set of bypass instructions to getMatchedDn */
     public static final Collection GETMATCHEDDN_BYPASS;
+    /** safe to use set of bypass instructions to lookup raw entries excluding operational attributes */
+    public static final Collection LOOKUP_EXCLUDING_OPR_ATTRS_BYPASS;
     /** Bypass String to use when ALL interceptors should be skipped */
     public static final String BYPASS_ALL = "*";
     /** Bypass String to use when ALL interceptors should be skipped */
@@ -103,6 +105,18 @@
         c.add( "referralService" );
         c.add( "eventService" );
         GETMATCHEDDN_BYPASS = Collections.unmodifiableCollection( c );
+
+	c = new HashSet();
+	c.add( "normalizationService" );
+	c.add( "authenticationService" );
+	c.add( "authorizationService" );
+	c.add( "defaultAuthorizationService" );
+	c.add( "schemaService" );
+	c.add( "subentryService" );
+	c.add( "referralService" );
+	c.add( "eventService" );
+	c.add( "triggerService" );
+	LOOKUP_EXCLUDING_OPR_ATTRS_BYPASS = Collections.unmodifiableCollection( c );
     }
 
 
@@ -803,4 +817,4 @@
         EventService interceptor = ( EventService ) chain.get( "eventService" );
         interceptor.removeNamingListener( ctx, namingListener );
     }
-}
\ No newline at end of file
+}