[JBoss-dev] [JMX on JBoss (JBoss/JMX)] - How to get a local rerence to MBeanServer?

2004-06-14 Thread guava
Hi, Is there an API to get a local reference to Jboss MBeanServer implementation? Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3838684#3838684 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3838684 -

[JBoss-dev] [JMX on JBoss (JBoss/JMX)] - MBean constructor question.

2004-06-09 Thread guava
Hi, Is there anyway to create MBean using a constructor that takes arguments? It seems to me that JBoss JMX takes default constructor to create MBean. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3838244#3838244 Reply to the post : http://www.jbos

[JBoss-dev] [JMX on JBoss (JBoss/JMX)] - singleton MBean in JBoss possible?

2004-06-09 Thread guava
Hi, Is there anyway to create singleton MBean in JBoss? public class SingleDevice { private static SingleDevice _instance; public static synchronized SingleDevice getInstance() { if ( _instance == null ) _instance = new SingleDevice() return _instance;