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:31:40 UTC

cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy ProxyContainer.java ProxyInvocation.java ReflexiveInterceptor.java SimpleComponent.java SimpleContainer.java SimpleRPCContainer.java

dain        2003/09/07 21:31:39

  Modified:    modules/core/src/java/org/apache/geronimo/proxy
                        ProxyContainer.java ProxyInvocation.java
                        ReflexiveInterceptor.java SimpleComponent.java
                        SimpleContainer.java SimpleRPCContainer.java
  Log:
  Updated to reflect movement of base services code from o.a.g.common to o.a.g.core.service.
  
  Revision  Changes    Path
  1.3       +3 -3      incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/ProxyContainer.java
  
  Index: ProxyContainer.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/ProxyContainer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ProxyContainer.java	25 Aug 2003 03:14:46 -0000	1.2
  +++ ProxyContainer.java	8 Sep 2003 04:31:39 -0000	1.3
  @@ -59,8 +59,8 @@
   import java.lang.reflect.Method;
   import java.lang.reflect.Proxy;
   
  -import org.apache.geronimo.common.Invocation;
  -import org.apache.geronimo.common.InvocationResult;
  +import org.apache.geronimo.core.service.Invocation;
  +import org.apache.geronimo.core.service.InvocationResult;
   
   /**
    * @version $Revision$ $Date$
  
  
  
  1.3       +5 -5      incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/ProxyInvocation.java
  
  Index: ProxyInvocation.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/ProxyInvocation.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ProxyInvocation.java	28 Aug 2003 05:12:10 -0000	1.2
  +++ ProxyInvocation.java	8 Sep 2003 04:31:39 -0000	1.3
  @@ -60,8 +60,8 @@
   import java.io.ObjectOutput;
   import java.lang.reflect.Method;
   
  -import org.apache.geronimo.common.Invocation;
  -import org.apache.geronimo.common.SimpleInvocation;
  +import org.apache.geronimo.core.service.Invocation;
  +import org.apache.geronimo.core.service.SimpleInvocation;
   import org.apache.geronimo.remoting.*;
   
   /**
  @@ -74,7 +74,7 @@
       Object proxy;
   
       /* (non-Javadoc)
  -     * @see org.apache.geronimo.common.SimpleInvocation#writeExternal(java.io.ObjectOutput)
  +     * @see org.apache.geronimo.core.service.SimpleInvocation#writeExternal(java.io.ObjectOutput)
        */
       public void writeExternal(ObjectOutput out) throws IOException {
           super.writeExternal(out);
  @@ -83,7 +83,7 @@
       }
   
       /**
  -     * @see org.apache.geronimo.common.SimpleInvocation#readExternal(java.io.ObjectInput)
  +     * @see org.apache.geronimo.core.service.SimpleInvocation#readExternal(java.io.ObjectInput)
        */
       public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
           super.readExternal(in);
  
  
  
  1.3       +6 -6      incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/ReflexiveInterceptor.java
  
  Index: ReflexiveInterceptor.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/ReflexiveInterceptor.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ReflexiveInterceptor.java	26 Aug 2003 22:11:24 -0000	1.2
  +++ ReflexiveInterceptor.java	8 Sep 2003 04:31:39 -0000	1.3
  @@ -58,10 +58,10 @@
   import java.lang.reflect.InvocationTargetException;
   import java.lang.reflect.Method;
   
  -import org.apache.geronimo.common.AbstractInterceptor;
  -import org.apache.geronimo.common.Invocation;
  -import org.apache.geronimo.common.InvocationResult;
  -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;
   
   /**
    * @version $Revision$ $Date$
  @@ -75,7 +75,7 @@
       }
   
       /* (non-Javadoc)
  -     * @see org.apache.geronimo.common.AbstractInterceptor#invoke(org.apache.geronimo.common.Invocation)
  +     * @see org.apache.geronimo.core.service.AbstractInterceptor#invoke(org.apache.geronimo.core.service.Invocation)
        */
       public InvocationResult invoke(Invocation invocation) throws Throwable {
           try {
  
  
  
  1.2       +6 -6      incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/SimpleComponent.java
  
  Index: SimpleComponent.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/SimpleComponent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SimpleComponent.java	22 Aug 2003 02:23:25 -0000	1.1
  +++ SimpleComponent.java	8 Sep 2003 04:31:39 -0000	1.2
  @@ -57,8 +57,8 @@
   
   import java.io.Serializable;
   
  -import org.apache.geronimo.common.Component;
  -import org.apache.geronimo.common.Container;
  +import org.apache.geronimo.core.service.Component;
  +import org.apache.geronimo.core.service.Container;
   
   /**
    * @version $Revision$ $Date$
  @@ -69,14 +69,14 @@
       private String objectName;
   
       /**
  -     * @see org.apache.geronimo.common.Component#getContainer()
  +     * @see org.apache.geronimo.core.service.Component#getContainer()
        */
       public Container getContainer() {
           return container;
       }
   
       /**
  -     * @see org.apache.geronimo.common.Component#setContainer(org.apache.geronimo.common.Container)
  +     * @see org.apache.geronimo.core.service.Component#setContainer(org.apache.geronimo.core.service.Container)
        */
       public void setContainer(Container container) throws IllegalStateException, IllegalArgumentException {
           this.container = container;
  @@ -84,7 +84,7 @@
       }
   
       /**
  -     * @see org.apache.geronimo.common.Component#getObjectName()
  +     * @see org.apache.geronimo.core.service.Component#getObjectName()
        */
       public String getObjectName() {
           return objectName;
  
  
  
  1.2       +6 -6      incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/SimpleContainer.java
  
  Index: SimpleContainer.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/SimpleContainer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SimpleContainer.java	22 Aug 2003 02:23:25 -0000	1.1
  +++ SimpleContainer.java	8 Sep 2003 04:31:39 -0000	1.2
  @@ -60,8 +60,8 @@
   import java.util.Collections;
   import java.util.List;
   
  -import org.apache.geronimo.common.Component;
  -import org.apache.geronimo.common.Container;
  +import org.apache.geronimo.core.service.Component;
  +import org.apache.geronimo.core.service.Container;
   import org.apache.geronimo.common.NullArgumentException;
   
   /**
  @@ -72,7 +72,7 @@
       private ArrayList components = new ArrayList();
   
       /**
  -     * @see org.apache.geronimo.common.Container#addComponent(org.apache.geronimo.common.Component)
  +     * @see org.apache.geronimo.core.service.Container#addComponent(org.apache.geronimo.core.service.Component)
        */
       public void addComponent(Component component) {
           if (component == null)
  @@ -82,14 +82,14 @@
       }
   
       /**
  -     * @see org.apache.geronimo.common.Container#getComponents()
  +     * @see org.apache.geronimo.core.service.Container#getComponents()
        */
       public List getComponents() {
           return Collections.unmodifiableList(components);
       }
   
       /**
  -     * @see org.apache.geronimo.common.Container#removeComponent(org.apache.geronimo.common.Component)
  +     * @see org.apache.geronimo.core.service.Container#removeComponent(org.apache.geronimo.core.service.Component)
        */
       public void removeComponent(Component component) throws Exception {
           if (component == null)
  
  
  
  1.3       +7 -7      incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/SimpleRPCContainer.java
  
  Index: SimpleRPCContainer.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/proxy/SimpleRPCContainer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SimpleRPCContainer.java	26 Aug 2003 22:11:24 -0000	1.2
  +++ SimpleRPCContainer.java	8 Sep 2003 04:31:39 -0000	1.3
  @@ -61,11 +61,11 @@
   
   import javax.management.ObjectName;
   
  -import org.apache.geronimo.common.Component;
  -import org.apache.geronimo.common.Interceptor;
  -import org.apache.geronimo.common.Invocation;
  -import org.apache.geronimo.common.InvocationResult;
  -import org.apache.geronimo.common.RPCContainer;
  +import org.apache.geronimo.core.service.Component;
  +import org.apache.geronimo.core.service.Interceptor;
  +import org.apache.geronimo.core.service.Invocation;
  +import org.apache.geronimo.core.service.InvocationResult;
  +import org.apache.geronimo.core.service.RPCContainer;
   
   /**
    * @version $Revision$ $Date$
  @@ -78,7 +78,7 @@
       private Interceptor firstInterceptor;
   
       /**
  -    * @see org.apache.geronimo.common.RPCContainer#invoke(org.apache.geronimo.common.Invocation)
  +    * @see org.apache.geronimo.core.service.RPCContainer#invoke(org.apache.geronimo.core.service.Invocation)
       */
       public final InvocationResult invoke(Invocation invocation) throws Throwable {
           return firstInterceptor.invoke(invocation);