|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The DynamicMBean interface is implemented by resources that expose
their definition at runtime. The implementation exposes its attributes,
methods and notifications through the getMBeanInfo
method.
From a management point of view, the DynamicMBean behaves like any other MBean.
It is the responsibility of the implementation to ensure the MBean works as self-described. The MBeanServer makes no attempt to validate it.
Although the self-description is retrieved at runtime and is therefore dynamic, the implementation must not change it once it has been retrieved. A manager can expect the attributes, methods and notifications to remain constant. It is the implementation's responsibility to conform to this behaviour.
MBeanInfo
Method Summary | |
Object |
getAttribute(String attribute)
Returns the value of the attribute with the name matching the passed string. |
AttributeList |
getAttributes(String[] attributes)
Returns the values of the attributes with names matching the passed string array. |
MBeanInfo |
getMBeanInfo()
Returns the management interface that describes this dynamic resource. |
Object |
invoke(String actionName,
Object[] params,
String[] signature)
Invokes a resource operation. |
void |
setAttribute(Attribute attribute)
Sets the value of an attribute. |
AttributeList |
setAttributes(AttributeList attributes)
Sets the values of the attributes passed as an AttributeList of name and new value pairs. |
Method Detail |
public Object getAttribute(String attribute) throws AttributeNotFoundException, MBeanException, ReflectionException
attribute
- the name of the attribute.
AttributeNotFoundException
- when there is no such attribute.
MBeanException
- wraps any error thrown by the resource when
getting the attribute.
ReflectionException
- wraps any error invoking the resource.public void setAttribute(Attribute attribute) throws AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
Attribute
.
attribute
- the name and new value of the attribute.
AttributeNotFoundException
- when there is no such attribute.
InvalidAttributeValueException
- when the new value cannot be
converted to the type of the attribute.
MBeanException
- wraps any error thrown by the resource when
setting the new value.
ReflectionException
- wraps any error invoking the resource.Attribute
public AttributeList getAttributes(String[] attributes)
attributes
- the names of the attribute.
AttributeList
of name and value pairs.public AttributeList setAttributes(AttributeList attributes)
AttributeList
of name and new value pairs.
attributes
- the name an new value pairs.
AttributeList
of name and value pairs
that were actually set.public Object invoke(String actionName, Object[] params, String[] signature) throws MBeanException, ReflectionException
actionName
- the name of the operation to perform.params
- the parameters to pass to the operation.signature
- the signartures of the parameters.
MBeanException
- wraps any error thrown by the resource when
performing the operation.
ReflectionException
- wraps any error invoking the resource.public MBeanInfo getMBeanInfo()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |