You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by da...@apache.org on 2003/09/08 06:22:23 UTC

cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/client MainInvokerInterceptor.java

dain        2003/09/07 21:22:23

  Modified:    modules/core/src/java/org/apache/geronimo/client
                        MainInvokerInterceptor.java
  Log:
  Updated to reflect movement of code to Common module.
  
  Revision  Changes    Path
  1.4       +6 -6      incubator-geronimo/modules/core/src/java/org/apache/geronimo/client/MainInvokerInterceptor.java
  
  Index: MainInvokerInterceptor.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/client/MainInvokerInterceptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MainInvokerInterceptor.java	3 Sep 2003 16:02:05 -0000	1.3
  +++ MainInvokerInterceptor.java	8 Sep 2003 04:22:23 -0000	1.4
  @@ -55,13 +55,13 @@
    */
   package org.apache.geronimo.client;
   
  -import java.lang.reflect.Method;
   import java.lang.reflect.InvocationTargetException;
  +import java.lang.reflect.Method;
   
  -import org.apache.geronimo.common.AbstractInterceptor;
  -import org.apache.geronimo.common.InvocationResult;
  -import org.apache.geronimo.common.Invocation;
  -import org.apache.geronimo.common.SimpleInvocationResult;
  +import org.apache.geronimo.core.service.AbstractInterceptor;
  +import org.apache.geronimo.core.service.Invocation;
  +import org.apache.geronimo.core.service.InvocationResult;
  +import org.apache.geronimo.core.service.SimpleInvocationResult;
   import org.apache.geronimo.proxy.ProxyInvocation;
   
   /**