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/03/20 08:28:45 UTC

svn commit: r158317 - directory/apacheds/branches/interceptor_revamp/core/src/main/aspects/org/apache/ldap/server/jndi/ProviderNexusAspect.aj

Author: trustin
Date: Sat Mar 19 23:28:44 2005
New Revision: 158317

URL: http://svn.apache.org/viewcvs?view=rev&rev=158317
Log:
Fixed: compilation errors

Modified:
    directory/apacheds/branches/interceptor_revamp/core/src/main/aspects/org/apache/ldap/server/jndi/ProviderNexusAspect.aj

Modified: directory/apacheds/branches/interceptor_revamp/core/src/main/aspects/org/apache/ldap/server/jndi/ProviderNexusAspect.aj
URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/interceptor_revamp/core/src/main/aspects/org/apache/ldap/server/jndi/ProviderNexusAspect.aj?view=diff&r1=158316&r2=158317
==============================================================================
--- directory/apacheds/branches/interceptor_revamp/core/src/main/aspects/org/apache/ldap/server/jndi/ProviderNexusAspect.aj (original)
+++ directory/apacheds/branches/interceptor_revamp/core/src/main/aspects/org/apache/ldap/server/jndi/ProviderNexusAspect.aj Sat Mar 19 23:28:44 2005
@@ -18,6 +18,7 @@
 import org.apache.ldap.server.PartitionNexus;
 import org.apache.ldap.server.db.Database;
 import org.apache.ldap.server.ContextPartition;
+import org.apache.ldap.server.jndi.call.Call;
 
 
 /**
@@ -178,9 +179,9 @@
      * 
      * @param invocation the Invocation instantiated
      */
-    pointcut newInvocation( Invocation invocation ):
+    pointcut newInvocation( Call invocation ):
         target( invocation ) &&
-        execution( public Invocation.new() );
+        execution( public Call.new() );
       
         
     // ------------------------------------------------------------------------
@@ -206,7 +207,7 @@
         }
       
         
-    after( Invocation invocation ):
+    after( Call invocation ):
         newInvocation( invocation )
         {
             invocation.setContextStack( getContextStack() );