Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6398884

Method in MBean interface inherited from two parent interfaces appears twice in MBeanInfo

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • 7
    • 6
    • core-svc

      Suppose I have the following interfaces:

      public interface Parent1 {
          public int foo();
      }
      public interface Parent2 {
          public int foo();
      }
      public interface ChildMBean extends Parent1, Parent2 {
      }
      public class Child implements ChildMBean {
          public int foo() {return 0;}
      }

      If I register this MBean, its MBeanInfo will contain two MBeanOperationInfo defining two operations both called "foo".

      The behaviour is the same if I define an MXBean instead of a Standard MBean.

      This bug was already present in Tiger and is present in Mustang b77.

            dfuchs Daniel Fuchs
            emcmanus Eamonn McManus
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: