Uses of Class
javax.management.AttributeList
-
Packages that use AttributeList Package Description javax.management Provides the core classes for the Java Management Extensions.javax.management.modelmbean Provides the definition of the ModelMBean classes.javax.management.remote.rmi The RMI connector is a connector for the JMX Remote API that uses RMI to transmit client requests to a remote MBean server. -
-
Uses of AttributeList in javax.management
Methods in javax.management that return AttributeList Modifier and Type Method Description AttributeList
DynamicMBean. getAttributes(String[] attributes)
Get the values of several attributes of the Dynamic MBean.AttributeList
MBeanServer. getAttributes(ObjectName name, String[] attributes)
AttributeList
MBeanServerConnection. getAttributes(ObjectName name, String[] attributes)
Retrieves the values of several attributes of a named MBean.AttributeList
DynamicMBean. setAttributes(AttributeList attributes)
Sets the values of several attributes of the Dynamic MBean.AttributeList
MBeanServer. setAttributes(ObjectName name, AttributeList attributes)
AttributeList
MBeanServerConnection. setAttributes(ObjectName name, AttributeList attributes)
Sets the values of several attributes of a named MBean.Methods in javax.management with parameters of type AttributeList Modifier and Type Method Description boolean
AttributeList. addAll(int index, AttributeList list)
Inserts all of the elements in theAttributeList
specified into this list, starting at the specified position, in the order in which they are returned by the Iterator of theAttributeList
specified.boolean
AttributeList. addAll(AttributeList list)
Appends all the elements in theAttributeList
specified to the end of the list, in the order in which they are returned by the Iterator of theAttributeList
specified.AttributeList
DynamicMBean. setAttributes(AttributeList attributes)
Sets the values of several attributes of the Dynamic MBean.AttributeList
MBeanServer. setAttributes(ObjectName name, AttributeList attributes)
AttributeList
MBeanServerConnection. setAttributes(ObjectName name, AttributeList attributes)
Sets the values of several attributes of a named MBean.Constructors in javax.management with parameters of type AttributeList Constructor Description AttributeList(AttributeList list)
Constructs anAttributeList
containing the elements of theAttributeList
specified, in the order in which they are returned by theAttributeList
's iterator. -
Uses of AttributeList in javax.management.modelmbean
Methods in javax.management.modelmbean that return AttributeList Modifier and Type Method Description AttributeList
RequiredModelMBean. getAttributes(String[] attrNames)
Returns the values of several attributes in the ModelMBean.AttributeList
RequiredModelMBean. setAttributes(AttributeList attributes)
Sets the values of an array of attributes of this ModelMBean.Methods in javax.management.modelmbean with parameters of type AttributeList Modifier and Type Method Description AttributeList
RequiredModelMBean. setAttributes(AttributeList attributes)
Sets the values of an array of attributes of this ModelMBean. -
Uses of AttributeList in javax.management.remote.rmi
Methods in javax.management.remote.rmi that return AttributeList Modifier and Type Method Description AttributeList
RMIConnection. getAttributes(ObjectName name, String[] attributes, Subject delegationSubject)
Handles the methodMBeanServerConnection.getAttributes(ObjectName, String[])
.AttributeList
RMIConnection. setAttributes(ObjectName name, MarshalledObject attributes, Subject delegationSubject)
Handles the methodMBeanServerConnection.setAttributes(ObjectName, AttributeList)
.
-