java命名空间javax.management.modelmbean接口modelmbeaninfo的类成员方法:
getdescriptor定义及介绍
本文导语:
getdescriptor
descriptor getdescriptor(string indescriptorname,
string indescriptortype)
throws mbeanexception,
runtimeoperationsexception
返回通过 name 和 descriptortype 请求的 descriptor。
参数:in...
getdescriptor
descriptor getdescriptor(string indescriptorname,
string indescriptortype)
throws mbeanexception,
runtimeoperationsexception
- 返回通过 name 和 descriptortype 请求的 descriptor。
- 参数:
indescriptorname
- 描述符的名称。indescriptortype
- 要请求的描述符的类型。如果它为 null 或空,就搜索所有类型。有效的类型有 'mbean'、'attribute'、'constructor'、'operation'、'notification'。此值将等于所返回的描述符中的 'descriptortype' 字段。
- 返回:
- 包含具有相同 name 和 descriptortype 的 modelmbean 描述符的 descriptor。如果未找到描述符,则返回 null。
- 抛出:
mbeanexception
- 包装一个分布式通信异常。
runtimeoperationsexception
- 包装描述符的名称为 null 的 illegalargumentexception,或者 null 或无效类型的 illegalargumentexception。类型必须为 "mbean"、"attribute"、"constructor"、"operation" 或 "notification"。- 另请参见:
setdescriptor(javax.management.descriptor, java.lang.string)