|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface ModelMBeanInfo
此接口由每个 ModelMBean 的 ModelMBeanInfo 实现。此接口的实现必须与每个 JMX Agent 一起发布。
Java 资源使用 MBeanServer 的 createMBean 方法来实例化 ModelMBean,以便具有可管理性。然后该资源设置 ModelMBean 实例的 ModelMBeanInfo 和 Descriptor。通过 ModelMBean 的 ModelMBeanInfo 公开的属性、操作和通知组成了管理接口,并且像其他 MBean 一样可以从 MBean、连接器/适配器进行访问。通过 Descriptor,可以定义托管应用程序中的值和方法,并可以将它们映射到 ModelMBean 的属性和操作。此映射可以在文件的开发过程中定义,也可以以编程方式在运行时动态定义。
MBeanServer 中实例化的每个 ModelMBean 都是可管理的:通过连接到该 MBeanServer 的连接器/适配器,可以远程访问其属性、操作和通知。Java 对象不能在 MBeanServer 中进行注册,除非它是 JMX 兼容的 MBean。通过实例化 ModelMBean,资源可保证 MBean 是有效的。 每个公共方法必须抛出 MBeanException 和 RuntimeOperationsException。这允许包装来自分布式通信(RMI 和 EJB 等)的异常。
方法摘要 | |
---|---|
Object |
clone()
创建并返回此对象的一个副本。 |
ModelMBeanAttributeInfo |
getAttribute(String inName)
返回通过名称请求的 ModelMBeanAttributeInfo。 |
MBeanAttributeInfo[] |
getAttributes()
返回为管理公开的属性列表。 |
String |
getClassName()
返回此 MBeanInfo 所描述的 MBean 的 Java 类名称。 |
MBeanConstructorInfo[] |
getConstructors()
返回 MBean 的公共构造方法列表。 |
String |
getDescription()
返回 MBean 的可读描述。 |
Descriptor |
getDescriptor(String inDescriptorName,
String inDescriptorType)
返回通过 name 和 descriptorType 请求的 Descriptor。 |
Descriptor[] |
getDescriptors(String inDescriptorType)
返回由 inDescriptorType 类型的 ModelMBeanInfo 的所有 Descriptor 组成的 Descriptor 数组。 |
Descriptor |
getMBeanDescriptor()
返回包含 MBean 级策略的 ModelMBean 的描述符。 |
ModelMBeanNotificationInfo |
getNotification(String inName)
返回通过名称请求的 ModelMBeanNotificationInfo。 |
MBeanNotificationInfo[] |
getNotifications()
返回 MBean 所发送的通知列表。 |
ModelMBeanOperationInfo |
getOperation(String inName)
返回通过名称请求的 ModelMBeanOperationInfo。 |
MBeanOperationInfo[] |
getOperations()
返回 MBean 的操作列表。 |
void |
setDescriptor(Descriptor inDescriptor,
String inDescriptorType)
设置 inDescriptorType 类型的 ModelMBean 的 info 数组中的描述符。 |
void |
setDescriptors(Descriptor[] inDescriptors)
添加或替换 ModelMBeanInfo 中的描述符。 |
void |
setMBeanDescriptor(Descriptor inDescriptor)
设置 ModelMBean 的描述符。 |
方法详细信息 |
---|
Descriptor[] getDescriptors(String inDescriptorType) throws MBeanException, RuntimeOperationsException
inDescriptorType
- 必须为要返回的描述符设置的 descriptorType 字段值。必须为 "mbean"、"attribute"、"operation"、"constructor" 或 "notification"。如果它为 null 或空,则将返回所有类型。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 当参数中的 descriptorType 不是以下值之一时,包装一个 IllegalArgumentException:"mbean"、"attribute"、"operation"、"constructor"、"notification"、空、 null。setDescriptors(javax.management.Descriptor[])
void setDescriptors(Descriptor[] inDescriptors) throws MBeanException, RuntimeOperationsException
inDescriptors
- ModelMBeanInfo 中要设置的描述符。忽略列表中的 null 元素。所有描述符必须具有 name 和 descriptorType 字段。
RuntimeOperationsException
- 包装 null 或无效描述符的 IllegalArgumentException。
MBeanException
- 包装一个分布式通信异常。getDescriptors(java.lang.String)
Descriptor getDescriptor(String inDescriptorName, String inDescriptorType) throws MBeanException, RuntimeOperationsException
inDescriptorName
- 描述符的名称。inDescriptorType
- 要请求的描述符的类型。如果它为 null 或空,就搜索所有类型。有效的类型有 'mbean'、'attribute'、'constructor'、'operation'、'notification'。此值将等于所返回的描述符中的 'descriptorType' 字段。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 包装描述符的名称为 null 的 IllegalArgumentException,或者 null 或无效类型的 IllegalArgumentException。类型必须为 "mbean"、"attribute"、"constructor"、"operation" 或 "notification"。setDescriptor(javax.management.Descriptor, java.lang.String)
void setDescriptor(Descriptor inDescriptor, String inDescriptorType) throws MBeanException, RuntimeOperationsException
inDescriptor
- ModelMBean 中要设置的描述符。它必须不为 null。所有描述符必须有 name 和 descriptorType 字段。inDescriptorType
- 要设置的描述符类型。如果它为 null,则使用描述符中的 descriptorType 字段。如果此值是指定的,则必须在描述符的 descriptorType 字段中设置它。必须为 "mbean"、"attribute"、"constructor"、"operation" 或 "notification"。
RuntimeOperationsException
- 包装非法或 null 参数的 IllegalArgumentException,或者如果在对应的 MBeanAttributeInfo、MBeanConstructorInfo、MBeanNotificationInfo 或 MBeanOperationInfo 中找不到描述符的 name 字段。
MBeanException
- 包装一个分布式通信异常。getDescriptor(java.lang.String, java.lang.String)
Descriptor getMBeanDescriptor() throws MBeanException, RuntimeOperationsException
描述符中的字段定义如下,但不限于此:
name : MBean 名称 descriptorType : 必须为 "mbean" displayName : 要在显示中使用的属性名称 persistPolicy : OnUpdate|OnTimer|NoMoreOftenThan|OnUnregister|Always|Never persistLocation : 应在其中保持 MBean 的完全限定目录名(如果适当)。 persistFile : 应在其中保持 MBean 的文件名称。 persistPeriod : 秒数 - OnTime 和 NoMoreOftenThan PersistPolicy 的保持周期的频率 currencyTimeLimit : 值保持有效的时间,<0 为无效,=0 为总是有效,>0 为有效的秒数 log : 其中 t:记录所有通知;f:不记录通知 logfile : 要记录事件的完全限定文件名 visibility : 1-4,其中 1:总是可见;4:几乎不可见 export : 要用于导出/公开此 MBean 的名称,以便其他 JMX Agent 可以找到它 presentationString : 允许数据与 MBean 关联的 xml 格式的字符串。
默认描述符为:name=mbeanName、descriptorType=mbean、displayName=this.getClassName()、persistPolicy=never、log=F、export=F、visibility=1 如果描述符不包含所有这些字段,则将以这些默认值添加它们。
注:由于与此规范的以前版本不一致,因此对于 currencyTimeLimit
,推荐不使用负值或零。要指示某个缓存的值永远无效,请忽略 currencyTimeLimit
字段。要指示它总是有效,请为此字段使用一个非常大的值。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 如果获取描述符时发生 RuntimeException
。setMBeanDescriptor(javax.management.Descriptor)
void setMBeanDescriptor(Descriptor inDescriptor) throws MBeanException, RuntimeOperationsException
getMBeanDescriptor
方法的 javadoc。
inDescriptor
- 要设置的描述符。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 包装无效描述符的 IllegalArgumentException。getMBeanDescriptor()
ModelMBeanAttributeInfo getAttribute(String inName) throws MBeanException, RuntimeOperationsException
inName
- 要获取的 ModelMBeanAttributeInfo 名称。如果不存在此名称的 ModelMBeanAttributeInfo,则返回 null。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 包装 null 属性名称的 IllegalArgumentException。ModelMBeanOperationInfo getOperation(String inName) throws MBeanException, RuntimeOperationsException
inName
- 要获取的 ModelMBeanOperationInfo 名称。如果不存在此名称的 ModelMBeanOperationInfo,则返回 null。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 包装 null 操作名称的 IllegalArgumentException。ModelMBeanNotificationInfo getNotification(String inName) throws MBeanException, RuntimeOperationsException
inName
- 要获取的 ModelMBeanNotificationInfo 名称。如果不存在此名称的 ModelMBeanNotificationInfo,则返回 null。
MBeanException
- 包装一个分布式通信异常。
RuntimeOperationsException
- 包装 null 通知名称的 IllegalArgumentException。Object clone()
MBeanAttributeInfo[] getAttributes()
MBeanAttributeInfo
对象描述。
MBeanAttributeInfo
对象的数组。String getClassName()
MBeanInfo
所描述的 MBean 的 Java 类名称。
MBeanConstructorInfo[] getConstructors()
MBeanConstructorInfo
对象描述。
MBeanConstructorInfo
对象的数组。String getDescription()
MBeanNotificationInfo[] getNotifications()
MBeanNotificationInfo
对象描述。
除了由应用程序指定的任何通知之外,ModelMBean 还可以始终发送两个其他通知:
MBeanNotificationInfo
对象的数组。MBeanOperationInfo[] getOperations()
MBeanOperationInfo
对象描述。
MBeanOperationInfo
对象的数组。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。