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
This commit is contained in:
Andrew Haley 2007-05-03 18:38:37 +00:00
parent e152672004
commit 45b88fa2c4

View 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$;
};