Return-Path: Delivered-To: apmail-incubator-geronimo-cvs-archive@www.apache.org Received: (qmail 76807 invoked from network); 8 Sep 2003 04:22:31 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 8 Sep 2003 04:22:31 -0000 Received: (qmail 74440 invoked by uid 500); 8 Sep 2003 04:22:06 -0000 Delivered-To: apmail-incubator-geronimo-cvs-archive@incubator.apache.org Received: (qmail 74402 invoked by uid 500); 8 Sep 2003 04:22:05 -0000 Mailing-List: contact geronimo-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: geronimo-dev@incubator.apache.org Delivered-To: mailing list geronimo-cvs@incubator.apache.org Received: (qmail 74385 invoked from network); 8 Sep 2003 04:22:05 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 8 Sep 2003 04:22:05 -0000 Received: (qmail 76770 invoked by uid 1711); 8 Sep 2003 04:22:23 -0000 Date: 8 Sep 2003 04:22:23 -0000 Message-ID: <20030908042223.76769.qmail@minotaur.apache.org> From: dain@apache.org To: incubator-geronimo-cvs@apache.org Subject: cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/client MainInvokerInterceptor.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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; /**