You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gd...@apache.org on 2004/07/17 05:50:27 UTC

cvs commit: incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/replication ReplicationMemberImpl.java

gdamour     2004/07/16 20:50:27

  Modified:    sandbox/messaging/src/java/org/apache/geronimo/messaging
                        GBeanBaseEndPoint.java
               sandbox/messaging/src/java/org/apache/geronimo/messaging/replication
                        ReplicationMemberImpl.java
  Log:
  Fix the GBean attribute/reference names.
  
  Revision  Changes    Path
  1.2       +3 -3      incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/GBeanBaseEndPoint.java
  
  Index: GBeanBaseEndPoint.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/GBeanBaseEndPoint.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- GBeanBaseEndPoint.java	10 Jun 2004 23:12:24 -0000	1.1
  +++ GBeanBaseEndPoint.java	17 Jul 2004 03:50:27 -0000	1.2
  @@ -62,8 +62,8 @@
           GBeanInfoFactory infoFactory = new GBeanInfoFactory("Abstract EndPoint", GBeanBaseEndPoint.class.getName());
           infoFactory.addReference("Node", Node.class);
           infoFactory.addAttribute("ID", Object.class, true);
  -        infoFactory.addAttribute("MsgConsumerOut", MsgOutInterceptor.class, false);
  -        infoFactory.addAttribute("MsgProducerOut", MsgOutInterceptor.class, false);
  +        infoFactory.addAttribute("msgConsumerOut", MsgOutInterceptor.class, false);
  +        infoFactory.addAttribute("msgProducerOut", MsgOutInterceptor.class, false);
           infoFactory.setConstructor(new String[]{"Node", "ID"});
           GBEAN_INFO = infoFactory.getBeanInfo();
       }
  
  
  
  1.5       +3 -3      incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/replication/ReplicationMemberImpl.java
  
  Index: ReplicationMemberImpl.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/replication/ReplicationMemberImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ReplicationMemberImpl.java	10 Jun 2004 23:12:24 -0000	1.4
  +++ ReplicationMemberImpl.java	17 Jul 2004 03:50:27 -0000	1.5
  @@ -227,10 +227,10 @@
   
       static {
           GBeanInfoFactory infoFactory = new GBeanInfoFactory("Replication Member", ReplicationMemberImpl.class.getName(), GBeanBaseEndPoint.GBEAN_INFO);
  -        infoFactory.addAttribute("TargetNodes",  NodeInfo[].class, true);
  +        infoFactory.addAttribute("targetNodes",  NodeInfo[].class, true);
           infoFactory.addOperation("registerReplicantCapable", new Class[] {ReplicationCapable.class});
           infoFactory.addOperation("retrieveReplicantCapable", new Class[] {Object.class});
  -        infoFactory.setConstructor(new String[]{"Node", "ID", "TargetNodes"});
  +        infoFactory.setConstructor(new String[]{"Node", "ID", "targetNodes"});
           GBEAN_INFO = infoFactory.getBeanInfo();
       }