Uses of Class
javax.management.AttributeList
-
Packages that use AttributeList 软件包 描述 javax.management 提供Java Management Extensions的核心类。javax.management.modelmbean 提供ModelMBean类的定义。javax.management.remote.rmi RMI连接器是JMX Remote API的连接器,它使用RMI将客户端请求传输到远程MBean服务器。 -
-
Uses of AttributeList in javax.management
Methods in javax.management that return AttributeList 变量和类型 方法 描述 AttributeList
DynamicMBean. getAttributes(String[] attributes)
获取Dynamic MBean的多个属性的值。AttributeList
MBeanServer. getAttributes(ObjectName name, String[] attributes)
AttributeList
MBeanServerConnection. getAttributes(ObjectName name, String[] attributes)
检索指定MBean的多个属性的值。AttributeList
DynamicMBean. setAttributes(AttributeList attributes)
设置Dynamic MBean的多个属性的值。AttributeList
MBeanServer. setAttributes(ObjectName name, AttributeList attributes)
AttributeList
MBeanServerConnection. setAttributes(ObjectName name, AttributeList attributes)
设置命名MBean的多个属性的值。Methods in javax.management with parameters of type AttributeList 变量和类型 方法 描述 boolean
AttributeList. addAll(int index, AttributeList list)
将指定的AttributeList
中的所有元素插入到此列表中,从指定位置开始,按指定的AttributeList
的迭代器返回它们的顺序。boolean
AttributeList. addAll(AttributeList list)
将指定的AttributeList
中的所有元素追加到列表末尾,AttributeList
指定的AttributeList
的迭代器返回的AttributeList
。AttributeList
DynamicMBean. setAttributes(AttributeList attributes)
设置Dynamic MBean的多个属性的值。AttributeList
MBeanServer. setAttributes(ObjectName name, AttributeList attributes)
AttributeList
MBeanServerConnection. setAttributes(ObjectName name, AttributeList attributes)
设置命名MBean的多个属性的值。Constructors in javax.management with parameters of type AttributeList 构造器 描述 AttributeList(AttributeList list)
构造一个AttributeList
其中包含指定的AttributeList
的元素,按照AttributeList
的迭代器返回的AttributeList
。 -
Uses of AttributeList in javax.management.modelmbean
Methods in javax.management.modelmbean that return AttributeList 变量和类型 方法 描述 AttributeList
RequiredModelMBean. getAttributes(String[] attrNames)
返回ModelMBean中多个属性的值。AttributeList
RequiredModelMBean. setAttributes(AttributeList attributes)
设置此ModelMBean的属性数组的值。Methods in javax.management.modelmbean with parameters of type AttributeList 变量和类型 方法 描述 AttributeList
RequiredModelMBean. setAttributes(AttributeList attributes)
设置此ModelMBean的属性数组的值。 -
Uses of AttributeList in javax.management.remote.rmi
Methods in javax.management.remote.rmi that return AttributeList 变量和类型 方法 描述 AttributeList
RMIConnection. getAttributes(ObjectName name, String[] attributes, Subject delegationSubject)
AttributeList
RMIConnection. setAttributes(ObjectName name, MarshalledObject attributes, Subject delegationSubject)
-