Package com.tangosol.net.management
Class MBeanReference
- java.lang.Object
-
- com.tangosol.net.management.MBeanReference
-
public class MBeanReference extends Object
MBeanReference holds all necessary information to uniquely identify an MBean.- Since:
- Coherence 3.4
- Author:
- ew 2007.11.07
-
-
Constructor Summary
Constructors Constructor Description MBeanReference(ObjectName oname, MBeanServer mbs)
Construct an instance of MBeanReference.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MBeanServer
getMBeanServer()
Return the MbeanServer where the ObjectName is located.ObjectName
getObjectName()
Return the ObjectName of the qualified name.
-
-
-
Constructor Detail
-
MBeanReference
public MBeanReference(ObjectName oname, MBeanServer mbs)
Construct an instance of MBeanReference.- Parameters:
oname
- the ObjectNamembs
- the MBeanServer where the ObjectName exists
-
-
Method Detail
-
getObjectName
public ObjectName getObjectName()
Return the ObjectName of the qualified name.- Returns:
- the ObjectName reference
-
getMBeanServer
public MBeanServer getMBeanServer()
Return the MbeanServer where the ObjectName is located.- Returns:
- the MBeanServer reference
-
-