|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.jmx.support.ObjectNameManager
public class ObjectNameManager
Helper class for the creation of ObjectName
instances.
ObjectName
instances will be cached on JMX 1.2,
whereas they will be recreated for each request on JMX 1.0.
ObjectName.getInstance(String)
Constructor Summary | |
---|---|
ObjectNameManager()
|
Method Summary | |
---|---|
static javax.management.ObjectName |
getInstance(java.lang.Object objectName)
Retrieve the ObjectName instance corresponding to the supplied name. |
static javax.management.ObjectName |
getInstance(java.lang.String objectName)
Retrieve the ObjectName instance corresponding to the supplied name. |
static javax.management.ObjectName |
getInstance(java.lang.String domainName,
java.util.Hashtable properties)
Retrieve an ObjectName instance with the specified domain name
and the supplied key/name properties. |
static javax.management.ObjectName |
getInstance(java.lang.String domainName,
java.lang.String key,
java.lang.String value)
Retrieve an ObjectName instance for the specified domain and a
single property with the supplied key and value. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ObjectNameManager()
Method Detail |
---|
public static javax.management.ObjectName getInstance(java.lang.Object objectName) throws javax.management.MalformedObjectNameException
ObjectName
instance corresponding to the supplied name.
objectName
- the ObjectName
in ObjectName
or
String
format
ObjectName
instance
javax.management.MalformedObjectNameException
- in case of an invalid object name specificationObjectName.ObjectName(String)
,
ObjectName.getInstance(String)
public static javax.management.ObjectName getInstance(java.lang.String objectName) throws javax.management.MalformedObjectNameException
ObjectName
instance corresponding to the supplied name.
objectName
- the ObjectName
in String
format
ObjectName
instance
javax.management.MalformedObjectNameException
- in case of an invalid object name specificationObjectName.ObjectName(String)
,
ObjectName.getInstance(String)
public static javax.management.ObjectName getInstance(java.lang.String domainName, java.lang.String key, java.lang.String value) throws javax.management.MalformedObjectNameException
ObjectName
instance for the specified domain and a
single property with the supplied key and value.
domainName
- the domain name for the ObjectName
key
- the key for the single property in the ObjectName
value
- the value for the single property in the ObjectName
ObjectName
instance
javax.management.MalformedObjectNameException
- in case of an invalid object name specificationObjectName.ObjectName(String, String, String)
,
ObjectName.getInstance(String, String, String)
public static javax.management.ObjectName getInstance(java.lang.String domainName, java.util.Hashtable properties) throws javax.management.MalformedObjectNameException
ObjectName
instance with the specified domain name
and the supplied key/name properties.
domainName
- the domain name for the ObjectName
properties
- the properties for the ObjectName
ObjectName
instance
javax.management.MalformedObjectNameException
- in case of an invalid object name specificationObjectName.ObjectName(String, java.util.Hashtable)
,
ObjectName.getInstance(String, java.util.Hashtable)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |