| Package | Description |
|---|---|
| javax.management |
Provides the core classes for the Java Management Extensions.
|
| javax.management.modelmbean |
Provides the definition of the ModelMBean classes.
|
| Modifier and Type | Method and Description |
|---|---|
List |
AttributeList.asList()
Return a view of this list as a
List<Attribute>.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AttributeList.add(Attribute
Adds the
Attribute specified as the last element of the list.
|
void |
AttributeList.add(int index, Attribute
Inserts the attribute specified as an element at the position specified.
|
void |
AttributeList.set(int index, Attribute
Sets the element at the position specified to be the attribute specified.
|
void |
DynamicMBean.setAttribute(Attribute
Set the value of a specific attribute of the Dynamic MBean.
|
void |
StandardMBean.setAttribute(Attribute
|
void |
MBeanServer.setAttribute(ObjectName
|
void |
MBeanServerConnection.setAttribute(ObjectName
Sets the value of a specific attribute of a named MBean.
|
| Constructor and Description | |
|---|---|
AttributeList(List
Constructs an
AttributeList containing the elements of the
List specified, in the order in which they are returned by the
List's iterator.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ModelMBeanNotificationBroadcaster.sendAttributeChangeNotification(Attribute
Sends an attributeChangeNotification which contains the old value and new value for the attribute to the registered AttributeChangeNotification listeners on the ModelMBean.
|
void |
RequiredModelMBean.sendAttributeChangeNotification(Attribute
|
void |
RequiredModelMBean.setAttribute(Attribute
Sets the value of a specific attribute of a named ModelMBean.
|