You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by go...@apache.org on 2011/11/18 12:43:53 UTC

svn commit: r1203611 - in /directory/apacheds/branches/apacheds-osgi: component-annotations/ component-ipojo-handlers/ interceptors/authn/src/main/java/org/apache/directory/server/core/authn/AuthenticationInterceptor.java pom.xml

Author: gokturk
Date: Fri Nov 18 11:43:52 2011
New Revision: 1203611

URL: http://svn.apache.org/viewvc?rev=1203611&view=rev
Log:
Deleted previously created modules, which of two are now contained in component-hub

Removed:
    directory/apacheds/branches/apacheds-osgi/component-annotations/
    directory/apacheds/branches/apacheds-osgi/component-ipojo-handlers/
Modified:
    directory/apacheds/branches/apacheds-osgi/interceptors/authn/src/main/java/org/apache/directory/server/core/authn/AuthenticationInterceptor.java
    directory/apacheds/branches/apacheds-osgi/pom.xml

Modified: directory/apacheds/branches/apacheds-osgi/interceptors/authn/src/main/java/org/apache/directory/server/core/authn/AuthenticationInterceptor.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-osgi/interceptors/authn/src/main/java/org/apache/directory/server/core/authn/AuthenticationInterceptor.java?rev=1203611&r1=1203610&r2=1203611&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-osgi/interceptors/authn/src/main/java/org/apache/directory/server/core/authn/AuthenticationInterceptor.java (original)
+++ directory/apacheds/branches/apacheds-osgi/interceptors/authn/src/main/java/org/apache/directory/server/core/authn/AuthenticationInterceptor.java Fri Nov 18 11:43:52 2011
@@ -146,6 +146,30 @@ public class AuthenticationInterceptor e
 
 
     /**
+     * the set of interceptors we should *not* go through when pwdpolicy state information is being updated
+     */
+    private static final Collection<String> BYPASS_INTERCEPTORS;
+
+    static
+    {
+        Set<String> c = new HashSet<String>();
+        c.add( "NormalizationInterceptor" );
+        c.add( "AuthenticationInterceptor" );
+        c.add( "AciAuthorizationInterceptor" );
+        c.add( "AdministrativePointInterceptor" );
+        c.add( "DefaultAuthorizationInterceptor" );
+        c.add( "ExceptionInterceptor" );
+        c.add( "OperationalAttributeInterceptor" );
+        c.add( "SchemaInterceptor" );
+        c.add( "CollectiveAttributeInterceptor" );
+        c.add( "SubentryInterceptor" );
+        c.add( "EventInterceptor" );
+        c.add( "TriggerInterceptor" );
+        BYPASS_INTERCEPTORS = Collections.unmodifiableCollection( c );
+    }
+
+
+    /**
      * Creates an authentication service interceptor.
      */
     public AuthenticationInterceptor()

Modified: directory/apacheds/branches/apacheds-osgi/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-osgi/pom.xml?rev=1203611&r1=1203610&r2=1203611&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-osgi/pom.xml (original)
+++ directory/apacheds/branches/apacheds-osgi/pom.xml Fri Nov 18 11:43:52 2011
@@ -154,8 +154,6 @@
     <module>apache-felix</module>
     <module>dependencies</module>
     <module>service-osgi</module>
-    <module>component-annotations</module>
-    <module>component-ipojo-handlers</module>
     <module>component-hub</module>
   </modules>