java.lang.Object | ||
↳ | javax.management.MBeanInfo | |
↳ | javax.management.modelmbean.ModelMBeanInfoSupport |
This class represents the meta data for ModelMBeans. Descriptors have been added on the meta data objects.
Java resources wishing to be manageable instantiate the ModelMBean using the MBeanServer's createMBean method. The resource then sets the ModelMBeanInfo and Descriptors for the ModelMBean instance. The attributes and operations exposed via the ModelMBeanInfo for the ModelMBean are accessible from MBeans, connectors/adaptors like other MBeans. Through the Descriptors, values and methods in the managed application can be defined and mapped to attributes and operations of the ModelMBean. This mapping can be defined during development in a file or dynamically and programmatically at runtime.
Every ModelMBean which is instantiated in the MBeanServer becomes manageable: its attributes and operations become remotely accessible through the connectors/adaptors connected to that MBeanServer. A Java object cannot be registered in the MBeanServer unless it is a JMX compliant MBean. By instantiating a ModelMBean, resources are guaranteed that the MBean is valid. MBeanException and RuntimeOperationsException must be thrown on every public method. This allows for wrapping exceptions from distributed communications (RMI, EJB, etc.)
The serialVersionUID of this class is
-1935722590756516193L
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a ModelMBeanInfoSupport which is a duplicate of the given
ModelMBeanInfo.
| |||||||||||
Creates a ModelMBeanInfoSupport with the provided information,
but the descriptor is a default.
| |||||||||||
Creates a ModelMBeanInfoSupport with the provided information
and the descriptor given in parameter.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a shallow clone of this instance.
| |||||||||||
Returns a ModelMBeanAttributeInfo requested by name.
| |||||||||||
Returns the ModelMBeanConstructorInfo requested by name.
| |||||||||||
Returns a Descriptor requested by name.
| |||||||||||
Get the descriptor of this MBeanInfo.
| |||||||||||
Returns a Descriptor requested by name and descriptorType.
| |||||||||||
Returns a Descriptor array consisting of all
Descriptors for the ModelMBeanInfo of type inDescriptorType.
| |||||||||||
Returns the ModelMBean's descriptor which contains MBean wide policies.
| |||||||||||
Returns a ModelMBeanNotificationInfo requested by name.
| |||||||||||
Returns a ModelMBeanOperationInfo requested by name.
| |||||||||||
Sets descriptors in the info array of type inDescriptorType
for the ModelMBean.
| |||||||||||
Adds or replaces descriptors in the ModelMBeanInfo.
| |||||||||||
Sets the ModelMBean's descriptor.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Constructs a ModelMBeanInfoSupport which is a duplicate of the given
ModelMBeanInfo. The returned object is a shallow copy of the given
object. Neither the Descriptor nor the contained arrays
(ModelMBeanAttributeInfo[]
etc) are cloned. This method is
chiefly of interest to modify the Descriptor of the returned instance
via setDescriptor
without affecting the
Descriptor of the original object.
mbi | the ModelMBeanInfo instance from which the ModelMBeanInfo being created is initialized. |
---|
Creates a ModelMBeanInfoSupport with the provided information, but the descriptor is a default. The default descriptor is: name=mbeanName, descriptorType=mbean, displayName=ClassName, persistPolicy=never, log=F, visibility=1
className | classname of the MBean |
---|---|
description | human readable description of the ModelMBean |
attributes | array of ModelMBeanAttributeInfo objects which have descriptors |
constructors | array of ModelMBeanConstructorInfo objects which have descriptors |
operations | array of ModelMBeanOperationInfo objects which have descriptors |
notifications | array of ModelMBeanNotificationInfo objects which have descriptors |
Creates a ModelMBeanInfoSupport with the provided information and the descriptor given in parameter.
className | classname of the MBean |
---|---|
description | human readable description of the ModelMBean |
attributes | array of ModelMBeanAttributeInfo objects which have descriptors |
constructors | array of ModelMBeanConstructorInfo objects which have descriptor |
operations | array of ModelMBeanOperationInfo objects which have descriptor |
notifications | array of ModelMBeanNotificationInfo objects which have descriptor |
mbeandescriptor | descriptor to be used as the MBeanDescriptor containing MBean wide policy. If the descriptor is null, a default descriptor will be constructed. The default descriptor is: name=className, descriptorType=mbean, displayName=className, persistPolicy=never, log=F, visibility=1. If the descriptor does not contain all these fields, they will be added with these default values. |
RuntimeOperationsException | Wraps an
IllegalArgumentException for invalid descriptor passed in
parameter. (see getMBeanDescriptor for the definition of a valid MBean
descriptor.)
|
---|
Returns a shallow clone of this instance. Neither the Descriptor nor
the contained arrays (ModelMBeanAttributeInfo[]
etc) are
cloned. This method is chiefly of interest to modify the Descriptor
of the clone via setDescriptor
without affecting
the Descriptor of the original object.
Returns a ModelMBeanAttributeInfo requested by name.
inName | The name of the ModelMBeanAttributeInfo to get. If no ModelMBeanAttributeInfo exists for this name null is returned. |
---|
Returns the ModelMBeanConstructorInfo requested by name. If no ModelMBeanConstructorInfo exists for this name null is returned.
inName | the name of the constructor. |
---|
MBeanException | Wraps a distributed communication Exception. |
---|---|
RuntimeOperationsException | Wraps an IllegalArgumentException for a null constructor name. |
Returns a Descriptor requested by name.
inDescriptorName | The name of the descriptor. |
---|
MBeanException | Wraps a distributed communication Exception. |
---|---|
RuntimeOperationsException | Wraps an IllegalArgumentException for null name. |
Get the descriptor of this MBeanInfo. Changing the returned value will have no affect on the original descriptor.
Returns a Descriptor requested by name and descriptorType.
inDescriptorName | The name of the descriptor. |
---|---|
inDescriptorType | The type of the descriptor being requested. If this is null or empty then all types are searched. Valid types are 'mbean', 'attribute', 'constructor' 'operation', and 'notification'. This value will be equal to the 'descriptorType' field in the descriptor that is returned. |
Returns a Descriptor array consisting of all Descriptors for the ModelMBeanInfo of type inDescriptorType.
inDescriptorType | value of descriptorType field that must be set for the descriptor to be returned. Must be "mbean", "attribute", "operation", "constructor" or "notification". If it is null or empty then all types will be returned. |
---|
Returns the ModelMBean's descriptor which contains MBean wide policies. This descriptor contains metadata about the MBean and default policies for persistence and caching.
The fields in the descriptor are defined, but not limited to, the following:
name : MBean name descriptorType : must be "mbean" displayName : name of attribute to be used in displays persistPolicy : OnUpdate|OnTimer|NoMoreOftenThan|OnUnregister|Always|Never persistLocation : The fully qualified directory name where the MBean should be persisted (if appropriate) persistFile : File name into which the MBean should be persisted persistPeriod : seconds - frequency of persist cycle for OnTime and NoMoreOftenThan PersistPolicy currencyTimeLimit : how long value is valid, <0 never, =0 always, >0 seconds log : where t: log all notifications f: log no notifications logfile : fully qualified filename to log events to visibility : 1-4 where 1: always visible 4: rarely visible export : name to be used to export/expose this MBean so that it is findable by other JMX Agents. presentationString : xml formatted string to allow presentation of data to be associated with the MBean.
The default descriptor is: name=className,descriptorType="mbean", displayName=className, persistPolicy="never",log="F",export="F",visibility="1" If the descriptor does not contain all these fields, they will be added with these default values.
Note: because of inconsistencies in previous versions of
this specification, it is recommended not to use negative or zero
values for currencyTimeLimit
. To indicate that a
cached value is never valid, omit the
currencyTimeLimit
field. To indicate that it is
always valid, use a very large number for this field.
MBeanException |
---|
Returns a ModelMBeanNotificationInfo requested by name.
inName | The name of the ModelMBeanNotificationInfo to get. If no ModelMBeanNotificationInfo exists for this name null is returned. |
---|
Returns a ModelMBeanOperationInfo requested by name.
inName | The name of the ModelMBeanOperationInfo to get. If no ModelMBeanOperationInfo exists for this name null is returned. |
---|
Sets descriptors in the info array of type inDescriptorType for the ModelMBean. The setDescriptor method of the corresponding ModelMBean*Info will be called to set the specified descriptor.
inDescriptor | The descriptor to be set in the ModelMBean. It must NOT be null. All descriptors must have name and descriptorType fields. |
---|---|
inDescriptorType | The type of the descriptor being set. If this is null then the descriptorType field in the descriptor is used. If specified this value must be set in the descriptorType field in the descriptor. Must be "mbean","attribute", "constructor", "operation", or "notification". |
Adds or replaces descriptors in the ModelMBeanInfo.
inDescriptors | The descriptors to be set in the ModelMBeanInfo. Null elements of the list will be ignored. All descriptors must have name and descriptorType fields. |
---|
Sets the ModelMBean's descriptor. This descriptor contains default, MBean wide
metadata about the MBean and default policies for persistence and caching. This operation
does a complete replacement of the descriptor, no merging is done. If the descriptor to
set to is null then the default descriptor will be created.
The default descriptor is: name=className,descriptorType="mbean", displayName=className,
persistPolicy="never",log="F",export="F",visibility="1"
If the descriptor does not contain all these fields, they will be added with these default values.
See getMBeanDescriptor
method javadoc for description of valid field names.
inMBeanDescriptor | the descriptor to set. |
---|