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 2004/01/25 23:15:51 UTC

cvs commit: incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/transport TransportLoader.java

dain        2004/01/25 14:15:51

  Modified:    modules/remoting/src/java/org/apache/geronimo/remoting/transport
                        TransportLoader.java
  Log:
  Renamed endpoint to reference
  
  Revision  Changes    Path
  1.6       +4 -4      incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/transport/TransportLoader.java
  
  Index: TransportLoader.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/transport/TransportLoader.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TransportLoader.java	25 Jan 2004 21:07:04 -0000	1.5
  +++ TransportLoader.java	25 Jan 2004 22:15:51 -0000	1.6
  @@ -125,9 +125,9 @@
           Set attributes = new HashSet();
           attributes.add(new GAttributeInfo("ClientConnectURI"));
           attributes.add(new GAttributeInfo("BindURI", true));
  -        Set endpoints = new HashSet();
  -        endpoints.add(new GReferenceInfo("Router", "org.apache.geronimo.remoting.router.Router"));
  -        GBEAN_INFO = new GBeanInfo(TransportLoader.class.getName(), attributes, null, null, endpoints, null);
  +        Set references = new HashSet();
  +        references.add(new GReferenceInfo("Router", "org.apache.geronimo.remoting.router.Router"));
  +        GBEAN_INFO = new GBeanInfo(TransportLoader.class.getName(), attributes, null, null, references, null);
       }
   
       public static GBeanInfo getGBeanInfo() {