Uses of Interface
javax.management.Descriptor

Packages that use Descriptor
javax.management   
javax.management.modelmbean   
 

Uses of Descriptor in javax.management
 

Methods in javax.management that return Descriptor
 Descriptor DescriptorAccess.getDescriptor()
          Returns a copy of Descriptor.
 

Methods in javax.management with parameters of type Descriptor
 void DescriptorAccess.setDescriptor(Descriptor inDescriptor)
          Sets Descriptor (full replace).
 

Uses of Descriptor in javax.management.modelmbean
 

Classes in javax.management.modelmbean that implement Descriptor
 class DescriptorSupport
          This class represents the metadata set for a ModelMBean element.
 

Methods in javax.management.modelmbean that return Descriptor
 Descriptor ModelMBeanOperationInfo.getDescriptor()
          Returns a copy of the associated Descriptor of the ModelMBeanOperationInfo
 Descriptor ModelMBeanNotificationInfo.getDescriptor()
          Returns a copy of the associated Descriptor for the ModelMBeanNotificationInfo
 Descriptor[] ModelMBeanInfoSupport.getDescriptors(java.lang.String descriptionType)
          Returns a DescriptorList.
 Descriptor ModelMBeanInfoSupport.getDescriptor(java.lang.String descriptorName)
          Returns a Descriptor requested by name
 Descriptor ModelMBeanInfoSupport.getDescriptor(java.lang.String descriptorName, java.lang.String descriptorType)
          Returns a Descriptor requested by name and descriptorType.
 Descriptor ModelMBeanInfoSupport.getMBeanDescriptor()
          Returns the ModelMBean's descriptor which contains mbean wide policies.
 Descriptor[] ModelMBeanInfo.getDescriptors(java.lang.String inDescriptorType)
          returns a Descriptor array consisting of all Descriptors for the ModelMBeanInfo including the MBean Descriptor, attribute Descriptors, operation Descriptors, constructor Descriptors, and notification Descriptors.
 Descriptor ModelMBeanInfo.getDescriptor(java.lang.String descriptorName, java.lang.String descriptorType)
          returns a Descriptor requested by name and descriptorType.
 Descriptor ModelMBeanInfo.getMBeanDescriptor()
          returns a MBean's descriptor.
 Descriptor ModelMBeanConstructorInfo.getDescriptor()
          Returns a copy of the associated Descriptor
 Descriptor ModelMBeanAttributeInfo.getDescriptor()
          Gets a copy of the associated Descriptor for the ModelMBeanAttributeInfo
 

Methods in javax.management.modelmbean with parameters of type Descriptor
 void ModelMBeanOperationInfo.setDescriptor(Descriptor descriptor)
          Sets associated Descriptor (full replace) for the ModelMBeanOperationInfo If the new Descriptor is null, then the associated Descriptor reverts to a default descriptor.
 void ModelMBeanNotificationInfo.setDescriptor(Descriptor descriptor)
          Sets associated Descriptor (full replace) for the ModelMBeanNotificationInfo If the new Descriptor is null, then the associated Descriptor reverts to a default descriptor.
 void ModelMBeanInfoSupport.setDescriptors(Descriptor[] descriptors)
          Adds or replaces descriptors in all the ModelMBeanInfoSupport for the ModelMBean.
 void ModelMBeanInfoSupport.setDescriptor(Descriptor descriptor, java.lang.String descriptorType)
          Adds or replaces a descriptor in the ModelMBeanInfoSupport.
 void ModelMBeanInfoSupport.setMBeanDescriptor(Descriptor descriptor)
          Sets the ModelMBean's descriptor.
 void ModelMBeanInfo.setDescriptors(Descriptor[] inDescriptors)
          adds or replaces descriptors in the ModelMBeanInfo.
 void ModelMBeanInfo.setDescriptor(Descriptor descriptor, java.lang.String descriptorType)
          adds or replaces descriptors in all the info arrays for the ModelMBean.
 void ModelMBeanInfo.setMBeanDescriptor(Descriptor inDescriptor)
          sets the ModelMBean's descriptor (fully replace).
 void ModelMBeanConstructorInfo.setDescriptor(Descriptor descriptor)
          Sets associated Descriptor (full replace) of ModelMBeanConstructorInfo.
 void ModelMBeanAttributeInfo.setDescriptor(Descriptor descriptor)
          Sets associated Descriptor (full replace) for the ModelMBeanAttributeDescriptor.
 

Constructors in javax.management.modelmbean with parameters of type Descriptor
ModelMBeanOperationInfo(java.lang.String description, java.lang.reflect.Method method, Descriptor descriptor)
          Constructs a ModelMBeanOperationInfo object.
ModelMBeanOperationInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature, java.lang.String type, int impact, Descriptor descriptor)
          Constructs a ModelMBeanOperationInfo object.
ModelMBeanNotificationInfo(java.lang.String[] types, java.lang.String name, java.lang.String description, Descriptor descriptor)
          Constructs a ModelMBeanNotificationInfo object.
ModelMBeanInfoSupport(java.lang.String className, java.lang.String description, ModelMBeanAttributeInfo[] attributes, ModelMBeanConstructorInfo[] constructors, ModelMBeanOperationInfo[] operations, ModelMBeanNotificationInfo[] notifications, Descriptor descriptor)
          Creates a ModelMBeanInfoSupport with the provided information, but the descriptor is a default.
ModelMBeanConstructorInfo(java.lang.String description, java.lang.reflect.Constructor constructor, Descriptor descriptor)
          Constructs a MBeanConstructorInfo object.
ModelMBeanConstructorInfo(java.lang.String name, java.lang.String description, MBeanParameterInfo[] signature, Descriptor descriptor)
          Constructs a MBeanConstructorInfo object.
ModelMBeanAttributeInfo(java.lang.String name, java.lang.String description, java.lang.reflect.Method getter, java.lang.reflect.Method setter, Descriptor descriptor)
          Constructs a ModelMBeanAttributeInfo object.
ModelMBeanAttributeInfo(java.lang.String name, java.lang.String type, java.lang.String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor)
          Constructs a ModelMBeanAttributeInfo object with a default descriptor.