Java Doc for ModelMBeanAttributeInfo.java in  » 6.0-JDK-Core » management » javax » management » modelmbean » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » management » javax.management.modelmbean 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.management.MBeanAttributeInfo
   javax.management.modelmbean.ModelMBeanAttributeInfo

ModelMBeanAttributeInfo
public class ModelMBeanAttributeInfo extends MBeanAttributeInfo implements DescriptorAccess(Code)
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|OnUnregister|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. The default value of the name and displayName fields is the name of the attribute.

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.

The serialVersionUID of this class is 6181543027787327345L.
since:
   1.5




Constructor Summary
public  ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter)
     Constructs a ModelMBeanAttributeInfo object with a default descriptor.
public  ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter, Descriptor descriptor)
     Constructs a ModelMBeanAttributeInfo object.
public  ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs)
     Constructs a ModelMBeanAttributeInfo object with a default descriptor.
public  ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor)
     Constructs a ModelMBeanAttributeInfo object with a default descriptor.
Parameters:
  name - The name of the attribute
Parameters:
  type - The type or class name of the attribute
Parameters:
  description - A human readable description of the attribute.
Parameters:
  isReadable - True if the attribute has a getter method, false otherwise.
Parameters:
  isWritable - True if the attribute has a setter method, false otherwise.
Parameters:
  isIs - True if the attribute has an "is" getter, false otherwise.
Parameters:
  descriptor - An instance of Descriptor containing theappropriate metadata for this instance of the Attribute.
public  ModelMBeanAttributeInfo(ModelMBeanAttributeInfo inInfo)
     Constructs a new ModelMBeanAttributeInfo object from this ModelMBeanAttributeInfo Object.

Method Summary
public  Objectclone()
     Creates and returns a new ModelMBeanAttributeInfo which is a duplicate of this ModelMBeanAttributeInfo.
exception:
  RuntimeOperationsException - for illegal value forfield Names or field Values.
public  DescriptorgetDescriptor()
     Gets a copy of the associated Descriptor for the ModelMBeanAttributeInfo.
public  voidsetDescriptor(Descriptor inDescriptor)
     Sets associated Descriptor (full replace) for the ModelMBeanAttributeDescriptor.
public  StringtoString()
     Returns a human-readable version of the ModelMBeanAttributeInfo instance.


Constructor Detail
ModelMBeanAttributeInfo
public ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter) throws javax.management.IntrospectionException(Code)
Constructs a ModelMBeanAttributeInfo object with a default descriptor. The Descriptor of the constructed object will include fields contributed by any annotations on the Method objects that contain the DescriptorKey meta-annotation.
Parameters:
  name - The name of the attribute.
Parameters:
  description - A human readable description of the attribute. Optional.
Parameters:
  getter - The method used for reading the attribute value.May be null if the property is write-only.
Parameters:
  setter - The method used for writing the attribute value.May be null if the attribute is read-only.
exception:
  IntrospectionException - There is a consistencyproblem in the definition of this attribute.



ModelMBeanAttributeInfo
public ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter, Descriptor descriptor) throws javax.management.IntrospectionException(Code)
Constructs a ModelMBeanAttributeInfo object. The Descriptor of the constructed object will include fields contributed by any annotations on the Method objects that contain the DescriptorKey meta-annotation.
Parameters:
  name - The name of the attribute.
Parameters:
  description - A human readable description of the attribute. Optional.
Parameters:
  getter - The method used for reading the attribute value.May be null if the property is write-only.
Parameters:
  setter - The method used for writing the attribute value.May be null if the attribute is read-only.
Parameters:
  descriptor - An instance of Descriptor containing theappropriate metadata for this instance of the Attribute. Ifit is null, then a default descriptor will be created. Ifthe descriptor does not contain all the following fields,the missing ones are added with their default values:displayName, name, descriptorType.
exception:
  IntrospectionException - There is a consistencyproblem in the definition of this attribute.
exception:
  RuntimeOperationsException - Wraps anIllegalArgumentException. The descriptor is invalid, ordescriptor field "name" is present but not equal to nameparameter, or descriptor field "descriptorType" is presentbut not equal to "attribute".



ModelMBeanAttributeInfo
public ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs)(Code)
Constructs a ModelMBeanAttributeInfo object with a default descriptor.
Parameters:
  name - The name of the attribute
Parameters:
  type - The type or class name of the attribute
Parameters:
  description - A human readable description of the attribute.
Parameters:
  isReadable - True if the attribute has a getter method, false otherwise.
Parameters:
  isWritable - True if the attribute has a setter method, false otherwise.
Parameters:
  isIs - True if the attribute has an "is" getter, false otherwise.



ModelMBeanAttributeInfo
public ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor)(Code)
Constructs a ModelMBeanAttributeInfo object with a default descriptor.
Parameters:
  name - The name of the attribute
Parameters:
  type - The type or class name of the attribute
Parameters:
  description - A human readable description of the attribute.
Parameters:
  isReadable - True if the attribute has a getter method, false otherwise.
Parameters:
  isWritable - True if the attribute has a setter method, false otherwise.
Parameters:
  isIs - True if the attribute has an "is" getter, false otherwise.
Parameters:
  descriptor - An instance of Descriptor containing theappropriate metadata for this instance of the Attribute. Ifit is null then a default descriptor will be created. Ifthe descriptor does not contain all the following fields,the missing ones are added with their default values:displayName, name, descriptorType.
exception:
  RuntimeOperationsException - Wraps anIllegalArgumentException. The descriptor is invalid, ordescriptor field "name" is present but not equal to nameparameter, or descriptor field "descriptorType" is presentbut not equal to "attribute".



ModelMBeanAttributeInfo
public ModelMBeanAttributeInfo(ModelMBeanAttributeInfo inInfo)(Code)
Constructs a new ModelMBeanAttributeInfo object from this ModelMBeanAttributeInfo Object. A default descriptor will be created.
Parameters:
  inInfo - the ModelMBeanAttributeInfo to be duplicated




Method Detail
clone
public Object clone()(Code)
Creates and returns a new ModelMBeanAttributeInfo which is a duplicate of this ModelMBeanAttributeInfo.
exception:
  RuntimeOperationsException - for illegal value forfield Names or field Values. If the descriptor constructionfails for any reason, this exception will be thrown.



getDescriptor
public Descriptor getDescriptor()(Code)
Gets a copy of the associated Descriptor for the ModelMBeanAttributeInfo. Descriptor associated with theModelMBeanAttributeInfo object.
See Also:   ModelMBeanAttributeInfo.setDescriptor



setDescriptor
public void setDescriptor(Descriptor inDescriptor)(Code)
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. If the descriptor does not contain all the following fields, the missing ones are added with their default values: displayName, name, descriptorType.
Parameters:
  inDescriptor - replaces the Descriptor associated with theModelMBeanAttributeInfo
exception:
  RuntimeOperationsException - Wraps anIllegalArgumentException for an invalid Descriptor
See Also:   ModelMBeanAttributeInfo.getDescriptor



toString
public String toString()(Code)
Returns a human-readable version of the ModelMBeanAttributeInfo instance.



Methods inherited from javax.management.MBeanAttributeInfo
public Object clone()(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
public String getType()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isIs()(Code)(Java Doc)
public boolean isReadable()(Code)(Java Doc)
public boolean isWritable()(Code)(Java Doc)
public String toString()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.