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
-
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
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;