|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DynamicMBean
Defines the methods that should be implemented by a Dynamic MBean (MBean that exposes a dynamic management interface).
Method Summary | |
---|---|
Object |
getAttribute(String attribute)
Obtain the value of a specific attribute of the Dynamic MBean. |
AttributeList |
getAttributes(String[] attributes)
Get the values of several attributes of the Dynamic MBean. |
MBeanInfo |
getMBeanInfo()
Provides the exposed attributes and actions of the Dynamic MBean using an MBeanInfo object. |
Object |
invoke(String actionName,
Object[] params,
String[] signature)
Allows an action to be invoked on the Dynamic MBean. |
void |
setAttribute(Attribute attribute)
Set the value of a specific attribute of the Dynamic MBean. |
AttributeList |
setAttributes(AttributeList attributes)
Sets the values of several attributes of the Dynamic MBean. |
Method Detail |
---|
Object getAttribute(String attribute) throws AttributeNotFoundException, MBeanException, ReflectionException
attribute
- The name of the attribute to be retrieved
AttributeNotFoundException
MBeanException
- Wraps a java.lang.Exception
thrown by the MBean's getter.
ReflectionException
- Wraps a java.lang.Exception
thrown while trying to invoke the getter.setAttribute(javax.management.Attribute)
void setAttribute(Attribute attribute) throws AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
attribute
- The identification of the attribute to
be set and the value it is to be set to.
AttributeNotFoundException
InvalidAttributeValueException
MBeanException
- Wraps a java.lang.Exception
thrown by the MBean's setter.
ReflectionException
- Wraps a java.lang.Exception
thrown while trying to invoke the MBean's setter.getAttribute(java.lang.String)
AttributeList getAttributes(String[] attributes)
attributes
- A list of the attributes to be retrieved.
setAttributes(javax.management.AttributeList)
AttributeList setAttributes(AttributeList attributes)
attributes
- A list of attributes: The identification of the
attributes to be set and the values they are to be set to.
getAttributes(java.lang.String[])
Object invoke(String actionName, Object[] params, String[] signature) throws MBeanException, ReflectionException
actionName
- The name of the action to be invoked.params
- An array containing the parameters to be set when the action is
invoked.signature
- An array containing the signature of the action. The class objects will
be loaded through the same class loader as the one used for loading the
MBean on which the action is invoked.
MBeanException
- Wraps a java.lang.Exception
thrown by the MBean's invoked method.
ReflectionException
- Wraps a java.lang.Exception
thrown while trying to invoke the methodMBeanInfo getMBeanInfo()
MBeanInfo
allowing all attributes and actions
exposed by this Dynamic MBean to be retrieved.
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.