public class ModelMBeanAttributeInfo extends MBeanAttributeInfo implements DescriptorAccess
ModelMBeanAttributeInfo对象描述了ModelMBean的属性。 它是MBeanAttributeInfo的子类,添加了相关的描述符和DescriptorAccess接口的实现。
描述符中的字段被定义为但不限于以下内容。 请注意,当该表中的Type为Number时,也可以使用Long的十进制表示形式的String。
Name Type Meaning name String Attribute name. descriptorType String Must be "attribute". value Object Current (cached) value for attribute. default Object Default value for attribute. displayName String Name of attribute to be used in displays. getMethod String Name of operation descriptor for get method. setMethod String Name of operation descriptor for set method. protocolMap Descriptor See the section "Protocol Map Support" in the JMX specification document. Mappings must be appropriate for the attribute and entries can be updated or augmented at runtime. persistPolicy String One of: OnUpdate|OnTimer|NoMoreOftenThan|OnUnregister|Always|Never. See the section "MBean Descriptor Fields" in the JMX specification document. persistPeriod Number Frequency of persist cycle in seconds. Used when persistPolicy is "OnTimer" or "NoMoreOftenThan". currencyTimeLimit Number How long value is valid: <0 never, =0 always, >0 seconds. lastUpdatedTimeStamp Number When value was set. visibility Number 1-4 where 1: always visible, 4: rarely visible. presentationString String XML formatted string to allow presentation of data.默认描述符包含名称descriptorType和displayName字段。 name和displayName字段的默认值是属性的名称。
注:由于与此规范的以前版本不一致,建议不要使用负值或零值currencyTimeLimit
。 要指示缓存值永远无效,请省略currencyTimeLimit
字段。 要指示它始终有效,请为此字段使用非常大的数字。
这个类的serialVersionUID的是6181543027787327345L
。
description, name
Constructor and Description |
---|
ModelMBeanAttributeInfo(ModelMBeanAttributeInfo inInfo)
从此ModelMBeanAttributeInfo对象构造一个新的ModelMBeanAttributeInfo对象。
|
ModelMBeanAttributeInfo(String name, String description, 方法 getter, 方法 setter)
使用默认描述符构造一个ModelMBeanAttributeInfo对象。
|
ModelMBeanAttributeInfo(String name, String description, 方法 getter, 方法 setter, Descriptor descriptor)
构造一个ModelMBeanAttributeInfo对象。
|
ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs)
使用默认描述符构造一个ModelMBeanAttributeInfo对象。
|
ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor)
构造一个ModelMBeanAttributeInfo对象。
|
Modifier and Type | Method and Description |
---|---|
Object |
clone()
创建并返回一个新的ModelMBeanAttributeInfo,它与此ModelMBeanAttributeInfo重复。
|
Descriptor |
getDescriptor()
获取ModelMBeanAttributeInfo的关联描述符的副本。
|
void |
setDescriptor(Descriptor inDescriptor)
为ModelMBeanAttributeDescriptor设置关联的描述符(完全替换)。
|
String |
toString()
返回一个可读的ModelMBeanAttributeInfo实例版本。
|
equals, getType, hashCode, isIs, isReadable, isWritable
getDescription, getName
public ModelMBeanAttributeInfo(String name, String description, 方法 getter, 方法 setter) throws IntrospectionException
Descriptor
所构造的对象将包括促成通过在任何注解字段方法
包含对象DescriptorKey
元注释。
name
- 属性的名称。
description
- description
的人类可读描述。
可选的。
getter
- 用于读取属性值的方法。
如果属性是只写的,可能为null。
setter
- 用于写入属性值的方法。
如果属性是只读的,则可以为null。
IntrospectionException
- 此属性的定义存在一致性问题。
public ModelMBeanAttributeInfo(String name, String description, 方法 getter, 方法 setter, Descriptor descriptor) throws IntrospectionException
Descriptor
所构造的对象将包括促成通过在任何注解字段方法
包含对象DescriptorKey
元注释。
name
- 属性的名称。
description
- description
的人类可读描述。
可选的。
getter
- 用于读取属性值的方法。
如果属性是只写的,可能为null。
setter
- 用于写入属性值的方法。
如果属性是只读的,则可以为null。
descriptor
- 描述符的实例,其中包含此属性实例的适当元数据。
如果为空,则将创建默认描述符。
如果描述符不包含字段“displayName”,则该字段将添加到具有默认值的描述符中。
IntrospectionException
- 此属性的定义存在一致性问题。
RuntimeOperationsException
- 包裹一个IllegalArgumentException。
描述符无效,或描述符字段“name”不等于name参数,或描述符字段“descriptorType”不等于“attribute”。
public ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs)
name
- 属性的名称
type
-
type
的类型或类名
description
-
description
的人类可读描述。
isReadable
- 如果属性具有getter方法,则为True,否则为false。
isWritable
- 如果属性具有setter方法,则为True,否则为false。
isIs
- 如果属性具有“is”getter,则为True,否则为false。
public ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor)
name
- 属性的名称
type
-
type
的类型或类名
description
-
description
的人类可读描述。
isReadable
- 如果属性具有getter方法,则为True,否则为false。
isWritable
- 如果属性具有setter方法,则为True,否则为false。
isIs
- 如果属性具有“is”getter,则为True,否则为false。
descriptor
- 描述符的实例,其中包含此属性实例的适当元数据。
如果为空,则将创建默认描述符。
如果描述符不包含字段“displayName”,则该字段将添加到具有默认值的描述符中。
RuntimeOperationsException
- 包裹一个IllegalArgumentException。
描述符无效,或描述符字段“name”不等于name参数,或描述符字段“descriptorType”不等于“attribute”。
public ModelMBeanAttributeInfo(ModelMBeanAttributeInfo inInfo)
inInfo
- 要复制的ModelMBeanAttributeInfo
public Descriptor getDescriptor()
getDescriptor
在界面
DescriptorRead
getDescriptor
在
MBeanFeatureInfo
setDescriptor(javax.management.Descriptor)
public void setDescriptor(Descriptor inDescriptor)
setDescriptor
在界面
DescriptorAccess
inDescriptor
- 替换与ModelMBeanAttributeInfo关联的描述符
RuntimeOperationsException
- 为无效的描述符包装一个IllegalArgumentException
getDescriptor()
public Object clone()
clone
在
MBeanAttributeInfo
RuntimeOperationsException
- 用于字段名称或字段值的非法值。
如果由于任何原因描述符构造失败,将抛出此异常。
Cloneable
public String toString()
toString
在
MBeanAttributeInfo
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.