Server.java (Server): Record the delegate.
authorAndrew Haley <aph@gcc.gnu.org>
Thu, 3 May 2007 18:38:37 +0000 (18:38 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Thu, 3 May 2007 18:38:37 +0000 (18:38 +0000)
2007-05-03  Andrew Haley  <aph@redhat.com>

        * gnu/javax/management/Server.java (Server): Record the delegate.
        (registerMBean): Notify the delegate.
        (unregisterMBean): Likewise.
        (notify): New method.

From-SVN: r124386

libjava/gnu/javax/management/Server.h

index eb396d72ad50a069532227c5512a7f6d4742732c..2d9495630a550ef383d0dfe3addd3455f5f6f97a 100644 (file)
@@ -89,12 +89,15 @@ public:
   virtual ::javax::management::AttributeList * setAttributes(::javax::management::ObjectName *, ::javax::management::AttributeList *);
   virtual void unregisterMBean(::javax::management::ObjectName *);
 private:
+  void notify(::javax::management::ObjectName *, ::java::lang::String *);
   static ::javax::management::ObjectName * DELEGATE_NAME;
   ::java::util::Map * __attribute__((aligned(__alignof__( ::java::lang::Object)))) beans;
   ::java::lang::String * defaultDomain;
   ::javax::management::MBeanServer * outer;
   ::javax::management::loading::ClassLoaderRepository * repository;
   ::java::util::Map * listeners;
+  ::javax::management::MBeanServerDelegate * delegate;
+  static ::java::util::concurrent::atomic::AtomicLong * sequenceNumber;
 public:
   static ::java::lang::Class class$;
 };