Commit 45b88fa2 by Andrew Haley

Server.java (Server): Record the delegate.

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
parent e1526720
......@@ -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$;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment