|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This interface defines the methods that should be implemented by an MBean having a dynamic management interface.
Method Summary | |
java.lang.Object |
getAttribute(java.lang.String attribute)
Allows the value of a specific attribute of the Dynamic MBean to be obtained. |
AttributeList |
getAttributes(java.lang.String[] attributes)
Enables the values of several attributes of the Dynamic MBean. |
MBeanInfo |
getMBeanInfo()
This method provides the exposed attributes and actions of the Dynamic MBean. |
java.lang.Object |
invoke(java.lang.String actionName,
java.lang.Object[] params,
java.lang.String[] signature)
Allows an action to be invoked on the Dynamic MBean. |
void |
setAttribute(Attribute attribute)
Sets 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 |
public java.lang.Object getAttribute(java.lang.String attribute) throws AttributeNotFoundException, MBeanException, ReflectionException
attribute
- The name of the attribute to be retrievedpublic 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.public AttributeList getAttributes(java.lang.String[] attributes)
attributes
- A list of the attributes to be retrieved.public AttributeList setAttributes(AttributeList attributes)
name
- The object name of the MBean within which the attributes are to
be set.attributes
- A list of attributes: The identification of the
attributes to be set and the values they are to be set to.public java.lang.Object invoke(java.lang.String actionName, java.lang.Object[] params, java.lang.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.public MBeanInfo getMBeanInfo()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |