javax.management.modelmbean
Class ModelMBeanAttributeInfo

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by javax.management.MBeanFeatureInfo sample code for javax.management.MBeanFeatureInfo definition code for javax.management.MBeanFeatureInfo 
      extended by javax.management.MBeanAttributeInfo sample code for javax.management.MBeanAttributeInfo definition code for javax.management.MBeanAttributeInfo 
          extended by javax.management.modelmbean.ModelMBeanAttributeInfo
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable , Cloneable sample code for java.lang.Cloneable definition code for java.lang.Cloneable , DescriptorAccess sample code for javax.management.DescriptorAccess definition code for javax.management.DescriptorAccess

public class ModelMBeanAttributeInfo
extends MBeanAttributeInfo sample code for javax.management.MBeanAttributeInfo definition code for javax.management.MBeanAttributeInfo
implements DescriptorAccess sample code for javax.management.DescriptorAccess definition code for javax.management.DescriptorAccess , Cloneable sample code for java.lang.Cloneable definition code for java.lang.Cloneable

The ModelMBeanAttributeInfo object describes an attribute of the ModelMBean. It is a subclass of MBeanAttributeInfo with the addition of an associated Descriptor and an implementation of the DescriptorAccess interface.

The fields in the descriptor are defined, but not limited to, the following:

 name           : attribute name  
 descriptorType : must be "attribute"   
 value          : current value for attribute 
 default        : default value for attribute 
 displayName    : name of attribute to be used in displays 
 getMethod      : name of operation descriptor for get method  
 setMethod      : name of operation descriptor for set method 
 protocolMap    : object which implements the Descriptor interface: mappings must be appropriate for the attribute
                  and entries can be updated or augmented at runtime.
 persistPolicy  : OnUpdate|OnTimer|NoMoreOftenThan|Always|Never  
 persistPeriod  : seconds - frequency of persist cycle. Used when persistPolicy is"OnTimer" or "NoMoreOftenThan".  
 currencyTimeLimit : how long value is valid, <0 never, =0 always, >0 seconds
 lastUpdatedTimeStamp : when value was set  
 visibility     : 1-4 where 1: always visible 4: rarely visible  
 presentationString : xml formatted string to allow presentation of data 
 
The default descriptor contains the name, descriptorType and displayName fields.

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.

Since:
1.5
See Also:
Serialized Form

Field Summary
 
Fields inherited from class javax.management.MBeanFeatureInfo sample code for javax.management.MBeanFeatureInfo definition code for javax.management.MBeanFeatureInfo
description sample code for javax.management.MBeanFeatureInfo.description definition code for javax.management.MBeanFeatureInfo.description , name sample code for javax.management.MBeanFeatureInfo.name definition code for javax.management.MBeanFeatureInfo.name
 
Constructor Summary
ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(javax.management.modelmbean.ModelMBeanAttributeInfo) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(javax.management.modelmbean.ModelMBeanAttributeInfo) (ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo definition code for javax.management.modelmbean.ModelMBeanAttributeInfo  inInfo)
          Constructs a new ModelMBeanAttributeInfo object from this ModelMBeanAttributeInfo Object.
ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method) (String sample code for java.lang.String definition code for java.lang.String  name, String sample code for java.lang.String definition code for java.lang.String  description, Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  getter, Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  setter)
          Constructs a ModelMBeanAttributeInfo object with a default descriptor.
ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method, javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method, javax.management.Descriptor) (String sample code for java.lang.String definition code for java.lang.String  name, String sample code for java.lang.String definition code for java.lang.String  description, Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  getter, Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  setter, Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  descriptor)
          Constructs a ModelMBeanAttributeInfo object.
ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean) (String sample code for java.lang.String definition code for java.lang.String  name, String sample code for java.lang.String definition code for java.lang.String  type, String sample code for java.lang.String definition code for java.lang.String  description, boolean isReadable, boolean isWritable, boolean isIs)
          Constructs a ModelMBeanAttributeInfo object with a default descriptor.
ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean, javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean, javax.management.Descriptor) (String sample code for java.lang.String definition code for java.lang.String  name, String sample code for java.lang.String definition code for java.lang.String  type, String sample code for java.lang.String definition code for java.lang.String  description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  descriptor)
          Constructs a ModelMBeanAttributeInfo object with a default descriptor.
 
Method Summary
 Object sample code for java.lang.Object definition code for java.lang.Object clone sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.clone() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.clone() ()
          Creates and returns a new ModelMBeanAttributeInfo which is a duplicate of this ModelMBeanAttributeInfo.
 Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor getDescriptor sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.getDescriptor() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.getDescriptor() ()
          Gets a copy of the associated Descriptor for the ModelMBeanAttributeInfo.
 void setDescriptor sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.setDescriptor(javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.setDescriptor(javax.management.Descriptor) (Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  inDescriptor)
          Sets associated Descriptor (full replace) for the ModelMBeanAttributeDescriptor.
 String sample code for java.lang.String definition code for java.lang.String toString sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.toString() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.toString() ()
          Returns a human-readable version of the ModelMBeanAttributeInfo instance.
 
Methods inherited from class javax.management.MBeanAttributeInfo sample code for javax.management.MBeanAttributeInfo definition code for javax.management.MBeanAttributeInfo
equals sample code for javax.management.MBeanAttributeInfo.equals(java.lang.Object) definition code for javax.management.MBeanAttributeInfo.equals(java.lang.Object) , getType sample code for javax.management.MBeanAttributeInfo.getType() definition code for javax.management.MBeanAttributeInfo.getType() , hashCode sample code for javax.management.MBeanAttributeInfo.hashCode() definition code for javax.management.MBeanAttributeInfo.hashCode() , isIs sample code for javax.management.MBeanAttributeInfo.isIs() definition code for javax.management.MBeanAttributeInfo.isIs() , isReadable sample code for javax.management.MBeanAttributeInfo.isReadable() definition code for javax.management.MBeanAttributeInfo.isReadable() , isWritable sample code for javax.management.MBeanAttributeInfo.isWritable() definition code for javax.management.MBeanAttributeInfo.isWritable()
 
Methods inherited from class javax.management.MBeanFeatureInfo sample code for javax.management.MBeanFeatureInfo definition code for javax.management.MBeanFeatureInfo
getDescription sample code for javax.management.MBeanFeatureInfo.getDescription() definition code for javax.management.MBeanFeatureInfo.getDescription() , getName sample code for javax.management.MBeanFeatureInfo.getName() definition code for javax.management.MBeanFeatureInfo.getName()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method)

public ModelMBeanAttributeInfo(String sample code for java.lang.String definition code for java.lang.String  name,
                               String sample code for java.lang.String definition code for java.lang.String  description,
                               Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  getter,
                               Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  setter)
                        throws IntrospectionException sample code for javax.management.IntrospectionException definition code for javax.management.IntrospectionException 
Constructs a ModelMBeanAttributeInfo object with a default descriptor.

Parameters:
name - The name of the attribute.
description - A human readable description of the attribute. Optional.
getter - The method used for reading the attribute value. May be null if the property is write-only.
setter - The method used for writing the attribute value. May be null if the attribute is read-only.
Throws:
IntrospectionException sample code for javax.management.IntrospectionException definition code for javax.management.IntrospectionException - There is a consistency problem in the definition of this attribute.

ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method, javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.reflect.Method, java.lang.reflect.Method, javax.management.Descriptor)

public ModelMBeanAttributeInfo(String sample code for java.lang.String definition code for java.lang.String  name,
                               String sample code for java.lang.String definition code for java.lang.String  description,
                               Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  getter,
                               Method sample code for java.lang.reflect.Method definition code for java.lang.reflect.Method  setter,
                               Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  descriptor)
                        throws IntrospectionException sample code for javax.management.IntrospectionException definition code for javax.management.IntrospectionException 
Constructs a ModelMBeanAttributeInfo object.

Parameters:
name - The name of the attribute.
description - A human readable description of the attribute. Optional.
getter - The method used for reading the attribute value. May be null if the property is write-only.
setter - The method used for writing the attribute value. May be null if the attribute is read-only.
descriptor - An instance of Descriptor containing the appropriate metadata for this instance of the Attribute. If it is null, then a default descriptor will be created. If the descriptor does not contain the field "displayName" this field is added in the descriptor with its default value.
Throws:
IntrospectionException sample code for javax.management.IntrospectionException definition code for javax.management.IntrospectionException - There is a consistency problem in the definition of this attribute.
RuntimeOperationsException sample code for javax.management.RuntimeOperationsException definition code for javax.management.RuntimeOperationsException - Wraps an IllegalArgumentException. The descriptor is invalid, or descriptor field "name" is not equal to name parameter, or descriptor field "DescriptorType" is not equal to "attribute".

ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean)

public ModelMBeanAttributeInfo(String sample code for java.lang.String definition code for java.lang.String  name,
                               String sample code for java.lang.String definition code for java.lang.String  type,
                               String sample code for java.lang.String definition code for java.lang.String  description,
                               boolean isReadable,
                               boolean isWritable,
                               boolean isIs)
Constructs a ModelMBeanAttributeInfo object with a default descriptor.

Parameters:
name - The name of the attribute
type - The type or class name of the attribute
description - A human readable description of the attribute.
isReadable - True if the attribute has a getter method, false otherwise.
isWritable - True if the attribute has a setter method, false otherwise.
isIs - True if the attribute has an "is" getter, false otherwise.

ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean, javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean, boolean, javax.management.Descriptor)

public ModelMBeanAttributeInfo(String sample code for java.lang.String definition code for java.lang.String  name,
                               String sample code for java.lang.String definition code for java.lang.String  type,
                               String sample code for java.lang.String definition code for java.lang.String  description,
                               boolean isReadable,
                               boolean isWritable,
                               boolean isIs,
                               Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  descriptor)
Constructs a ModelMBeanAttributeInfo object with a default descriptor.

Parameters:
name - The name of the attribute
type - The type or class name of the attribute
description - A human readable description of the attribute.
isReadable - True if the attribute has a getter method, false otherwise.
isWritable - True if the attribute has a setter method, false otherwise.
isIs - True if the attribute has an "is" getter, false otherwise.
descriptor - An instance of Descriptor containing the appropriate metadata for this instance of the Attribute. If it is null then a default descriptor will be created. If the descriptor does not contain the field "displayName" this field is added in the descriptor with its default value.
Throws:
RuntimeOperationsException sample code for javax.management.RuntimeOperationsException definition code for javax.management.RuntimeOperationsException - Wraps an IllegalArgumentException. The descriptor is invalid, or descriptor field "name" is not equal to name parameter, or descriptor field "DescriptorType" is not equal to "attribute".

ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo(javax.management.modelmbean.ModelMBeanAttributeInfo) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo(javax.management.modelmbean.ModelMBeanAttributeInfo)

public ModelMBeanAttributeInfo(ModelMBeanAttributeInfo sample code for javax.management.modelmbean.ModelMBeanAttributeInfo definition code for javax.management.modelmbean.ModelMBeanAttributeInfo  inInfo)
Constructs a new ModelMBeanAttributeInfo object from this ModelMBeanAttributeInfo Object. A default descriptor will be created.

Parameters:
inInfo - the ModelMBeanAttributeInfo to be duplicated
Method Detail

getDescriptor sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.getDescriptor() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.getDescriptor()

public Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  getDescriptor()
Gets a copy of the associated Descriptor for the ModelMBeanAttributeInfo.

Specified by:
getDescriptor sample code for javax.management.DescriptorAccess.getDescriptor() definition code for javax.management.DescriptorAccess.getDescriptor() in interface DescriptorAccess sample code for javax.management.DescriptorAccess definition code for javax.management.DescriptorAccess
Returns:
Descriptor associated with the ModelMBeanAttributeInfo object.
See Also:
setDescriptor(javax.management.Descriptor) sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.setDescriptor(javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.setDescriptor(javax.management.Descriptor)

setDescriptor sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.setDescriptor(javax.management.Descriptor) definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.setDescriptor(javax.management.Descriptor)

public void setDescriptor(Descriptor sample code for javax.management.Descriptor definition code for javax.management.Descriptor  inDescriptor)
Sets associated Descriptor (full replace) for the ModelMBeanAttributeDescriptor. If the new Descriptor is null, then the associated Descriptor reverts to a default descriptor. The Descriptor is validated before it is assigned. If the new Descriptor is invalid, then a RuntimeOperationsException wrapping an IllegalArgumentException is thrown.

Specified by:
setDescriptor sample code for javax.management.DescriptorAccess.setDescriptor(javax.management.Descriptor) definition code for javax.management.DescriptorAccess.setDescriptor(javax.management.Descriptor) in interface DescriptorAccess sample code for javax.management.DescriptorAccess definition code for javax.management.DescriptorAccess
Parameters:
inDescriptor - replaces the Descriptor associated with the ModelMBeanAttributeInfo
Throws:
RuntimeOperationsException sample code for javax.management.RuntimeOperationsException definition code for javax.management.RuntimeOperationsException - Wraps an IllegalArgumentException for an invalid Descriptor
See Also:
getDescriptor() sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.getDescriptor() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.getDescriptor()

clone sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.clone() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.clone()

public Object sample code for java.lang.Object definition code for java.lang.Object  clone()
Creates and returns a new ModelMBeanAttributeInfo which is a duplicate of this ModelMBeanAttributeInfo.

Overrides:
clone sample code for javax.management.MBeanAttributeInfo.clone() definition code for javax.management.MBeanAttributeInfo.clone() in class MBeanAttributeInfo sample code for javax.management.MBeanAttributeInfo definition code for javax.management.MBeanAttributeInfo
Returns:
a clone of this instance.
Throws:
RuntimeOperationsException sample code for javax.management.RuntimeOperationsException definition code for javax.management.RuntimeOperationsException - for illegal value for field Names or field Values. If the descriptor construction fails for any reason, this exception will be thrown.
See Also:
Cloneable sample code for java.lang.Cloneable definition code for java.lang.Cloneable

toString sample code for javax.management.modelmbean.ModelMBeanAttributeInfo.toString() definition code for javax.management.modelmbean.ModelMBeanAttributeInfo.toString()

public String sample code for java.lang.String definition code for java.lang.String  toString()
Returns a human-readable version of the ModelMBeanAttributeInfo instance.

Overrides:
toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a string representation of the object.