java命名空间javax.management.modelmbean类modelmbeaninfosupport的类成员方法:
setdescriptor定义及介绍
本文导语:
setdescriptor
public void setdescriptor(descriptor indescriptor,
string indescriptortype)
throws mbeanexception,
runtimeoperationsexception
从接口 modelmbeaninfo 复制的描述
设置 indescriptortype 类型的 modelmbea...
setdescriptor
public void setdescriptor(descriptor indescriptor,
string indescriptortype)
throws mbeanexception,
runtimeoperationsexception
- 从接口
modelmbeaninfo
复制的描述
- 设置 indescriptortype 类型的 modelmbean 的 info 数组中的描述符。将调用对应 modelmbean*info 的 setdescriptor 方法来设置指定的描述符。
- 指定者:
- 接口
modelmbeaninfo
中的 setdescriptor
- 参数:
indescriptor
- modelmbean 中要设置的描述符。它必须不为 null。所有描述符必须有 name 和 descriptortype 字段。indescriptortype
- 要设置的描述符类型。如果它为 null,则使用描述符中的 descriptortype 字段。如果此值是指定的,则必须在描述符的 descriptortype 字段中设置它。必须为 "mbean"、"attribute"、"constructor"、"operation" 或 "notification"。
- 抛出:
mbeanexception
- 包装一个分布式通信异常。
runtimeoperationsexception
- 包装非法或 null 参数的 illegalargumentexception,或者如果在对应的 mbeanattributeinfo、mbeanconstructorinfo、mbeannotificationinfo 或 mbeanoperationinfo 中找不到描述符的 name 字段。- 另请参见:
modelmbeaninfo.getdescriptor(java.lang.string, java.lang.string)