javax.management |
|
Java Source File Name | Type | Comment |
AndQueryExp.java | Class | |
Attribute.java | Class | |
AttributeChangeNotification.java | Class | |
AttributeChangeNotificationFilter.java | Class | |
AttributeList.java | Class | |
AttributeNotFoundException.java | Class | |
AttributeValueExp.java | Class | |
BadAttributeValueExpException.java | Class | |
BadBinaryOpValueExpException.java | Class | |
BadStringOperationException.java | Class | |
BetweenQueryExp.java | Class | |
BinaryOpValueExp.java | Class | |
BinaryRelQueryExp.java | Class | |
BooleanValueExp.java | Class | |
ClassAttributeValueExp.java | Class | |
DefaultLoaderRepository.java | Class | |
Descriptor.java | Interface | A set of name-value pairs that allow ModelMBean metadata to have additional information attached to.
Descriptor is cloneable since represent a snapshot of what the client passed in to the ModelMBean.
This ensures that if the client nulls out some value, the descriptor is still valid, since it has been cloned
prior the client modification. |
DescriptorAccess.java | Interface | Use to gain access to the
Descriptor objects associated with MBean metadata. |
DynamicMBean.java | Interface | |
InQueryExp.java | Class | |
InstanceAlreadyExistsException.java | Class | |
InstanceNotFoundException.java | Class | |
IntrospectionException.java | Class | |
InvalidApplicationException.java | Class | |
InvalidAttributeValueException.java | Class | |
JMException.java | Class | |
JMRuntimeException.java | Class | |
ListenerNotFoundException.java | Class | |
MalformedObjectNameException.java | Class | |
MatchQueryExp.java | Class | |
MBeanAttributeInfo.java | Class | |
MBeanConstructorInfo.java | Class | |
MBeanException.java | Class | |
MBeanFeatureInfo.java | Class | Base class for the MBean metadata classes. |
MBeanInfo.java | Class | |
MBeanNotificationInfo.java | Class | Metadata class for MBean notifications. |
MBeanOperationInfo.java | Class | |
MBeanParameterInfo.java | Class | The metadata class for a parameter of MBean constructors and operations. |
MBeanPermission.java | Class | Permission that control access to MBeanServer methods. |
MBeanRegistration.java | Interface | Defines a series of callbacks that allow the MBean to interact with the process of MBean
registration and unregistration performed by the MBeanServer. |
MBeanRegistrationException.java | Class | |
MBeanServer.java | Interface | A local client can create, register, unregister and access registered MBeans by means of this interface, that is
the core component of JMX. |
MBeanServerBuilder.java | Class | This class is used by the
javax.management.MBeanServerFactory to delegate the
creation of new instances of
javax.management.MBeanServerDelegate and
javax.management.MBeanServer . |
MBeanServerConnection.java | Interface | This interface allows clients (local or remote) to create, register, unregister and access registered MBeans. |
MBeanServerDelegate.java | Class | The MBean that broadcasts notifications about registration and unregistration of other MBeans. |
MBeanServerDelegateMBean.java | Interface | Defines the management interface for the MBeanServerDelegate. |
MBeanServerFactory.java | Class | |
MBeanServerInvocationHandler.java | Class | |
MBeanServerNotification.java | Class | The notification emitted by the
MBeanServerDelegate delegate MBean when an MBean is registered or unregistered. |
MBeanServerPermission.java | Class | The permission that guards access to MBeanServerFactory methods. |
MBeanTrustPermission.java | Class | Permission that MBean class must have in order to be trusted. |
NotCompliantMBeanException.java | Class | Thrown when trying to register an MBean object that is not a compliant JMX MBean. |
Notification.java | Class | |
NotificationBroadcaster.java | Interface | Although not deprecated, this interface should not be used since JMX 1.2; use
NotificationEmitter instead. |
NotificationBroadcasterSupport.java | Class | Provides an implementation of NotificationEmitter interface.
This can be used as the super class of an MBean that sends notifications.
It is not specified whether the notification dispatch model is synchronous or asynchronous.
That is, when a thread calls sendNotification, the NotificationListener.handleNotification
method of each listener may be called within that thread (a synchronous model)
or within some other thread (an asynchronous model).
Applications should not depend on notification dispatch being synchronous or being asynchronous. |
NotificationEmitter.java | Interface | Interface implemented by an MBean that emits Notifications. |
NotificationFilter.java | Interface | Implemented by a class that wants to filter
Notification s sent to a
NotificationListener . |
NotificationFilterSupport.java | Class | Default implementation of a NotificationListener that filters out Notifications that
does not match the types enabled in this filter. |
NotificationListener.java | Interface | Implemented by an object that want to receive notifications. |
NotQueryExp.java | Class | |
NumericValueExp.java | Class | The ValueExp that represents a number. |
ObjectInstance.java | Class | Identifies an MBean registered in the MBeanServer. |
ObjectName.java | Class | |
OperationsException.java | Class | Thrown when an Exception is thrown by the MBeanServer when executing MBeanServer methods. |
OrQueryExp.java | Class | |
PersistentMBean.java | Interface | This interface is implemented by MBeans that are able to make themselves persistent. |
QualifiedAttributeValueExp.java | Class | The ValueExp that represent the value of an attribute of a specific MBean. |
Query.java | Class | Factory class for constructing query expressions. |
QueryEval.java | Class | The base class for QueryExp implementations. |
QueryExp.java | Interface | Represents a query expression. |
ReflectionException.java | Class | |
RuntimeErrorException.java | Class | Thrown when an Error is thrown by the MBeanServer; it wraps the actual error thrown. |
RuntimeMBeanException.java | Class | Thrown when a MBean method invoked by the MBeanServer throws any non-reflection RuntimeException. |
RuntimeOperationsException.java | Class | Thrown when a RuntimeException is thrown by the MBeanServer when executing MBeanServer methods. |
ServiceNotFoundException.java | Class | |
StandardMBean.java | Class | StandardMBean eases the development of MBeans that have a management interface described
by a java interface, like plain standard MBeans have; differently from a plain standard
MBean, StandardMBean is not tied to the JMX lexical patterns and allows more control on the
customization of the MBeanInfo that describes the MBean (for example it allows to describe
metadata descriptions). |
StringValueExp.java | Class | The ValueExp that represents a string. |
ValueExp.java | Interface | Represents values that can be passed to relational expressions such as strings, numbers, booleans and MBean attribute values. |