javax.management

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » JMX » jfoxmx » javax.management 
javax.management
Java Source File NameTypeComment
Attribute.javaClass Represents an MBean attribute by associating its name with its value.
AttributeChangeNotification.javaClass Provides definitions of the attribute change notifications sent by MBeans.
AttributeChangeNotificationFilter.javaClass This class implements of the javax.management.NotificationFilter NotificationFilter interface for the javax.management.AttributeChangeNotification attribute change notification .
AttributeList.javaClass Represents a list of values for attributes of an MBean.
AttributeNotFoundException.javaClass The specified attribute does not exist or cannot be retrieved.
AttributeValueExp.javaClass
BadAttributeValueExpException.javaClass Thrown when an invalid MBean attribute is passed to a query constructing method.
BadBinaryOpValueExpException.javaClass Thrown when an invalid expression is passed to a method for constructing a query.
BadStringOperationException.javaClass Thrown when an invalid string operation is passed to a method for constructing a query.
DefaultLoaderRepository.javaClass Keeps the list of Class Loaders registered in the MBean Server.
Descriptor.javaInterface This interface represents the behavioral metadata set for a JMX Element. For examples, a descriptor is part of the ModelMBeanInfo, ModelMBeanNotificationInfo, ModelMBeanAttributeInfo, ModelMBeanConstructorInfo, and ModelMBeanParameterInfo.

A descriptor consists of a collection of fields.

DescriptorAccess.javaInterface This interface is used to gain access to descriptors of the Descriptor class which are associated with a JMX component, i.e.
DynamicMBean.javaInterface Defines the methods that should be implemented by a Dynamic MBean (MBean that exposes a dynamic management interface).
InstanceAlreadyExistsException.javaClass The MBean is already registered in the repository.
InstanceNotFoundException.javaClass The specified MBean does not exist in the repository.
IntrospectionException.javaClass An exception occurred during the introspection of an MBean.
InvalidApplicationException.javaClass Thrown when an attempt is made to apply either of the following: A subquery expression to an MBean or a qualified attribute expression to an MBean of the wrong class.
InvalidAttributeValueException.javaClass The value specified is not valid for the attribute.
JMException.javaClass Exceptions thrown by JMX implementations.
JMRuntimeException.javaClass Runtime exceptions emitted by JMX implementations.
ListenerNotFoundException.javaClass The specified MBean listener does not exist in the repository.
MalformedObjectNameException.javaClass
MBeanAttributeInfo.javaClass Describes an MBean attribute exposed for management.
MBeanConstructorInfo.javaClass Describes a constructor exposed by an MBean.
MBeanException.javaClass Represents "user defined" exceptions thrown by MBean methods in the agent.
MBeanFeatureInfo.javaClass Provides general information for an MBean descriptor object.
MBeanInfo.javaClass
MBeanNotificationInfo.javaClass Describes a notification emitted by an MBean.
MBeanOperationInfo.javaClass Describes a management operation exposed by an MBean.
MBeanParameterInfo.javaClass Describes an argument of an operation exposed by an MBean.
MBeanPermission.javaClass

Permission controlling access to MBeanServer operations.

MBeanRegistration.javaInterface Can be implemented by an MBean in order to carry out operations before and after being registered or de-registered from the MBean server.
MBeanRegistrationException.javaClass Wraps exceptions thrown by the preRegister(), preDeregister() methods of the MBeanRegistration interface.
MBeanServer.javaInterface This is the interface for MBean manipulation on the agent side.
MBeanServerBuilder.javaClass

This class represents a builder that creates a default javax.management.MBeanServer implementation.

MBeanServerConnection.javaInterface This interface represents a way to talk to an MBean server, whether local or remote.
MBeanServerDelegate.javaClass Represents the Mbean server from the management point of view.
MBeanServerDelegateMBean.javaInterface Defines the management interface of an object of class MBeanServerDelegate.
MBeanServerFactory.javaClass

Provides MBean server references.

MBeanServerInvocationHandler.javaClass

java.lang.reflect.InvocationHandler that forwards methods in an MBean's management interface through the MBean server to the MBean.

Given an MBeanServerConnection , the ObjectName of an MBean within that MBean server, and a Java interface Intf that describes the management interface of the MBean using the patterns for a Standard MBean, this class can be used to construct a proxy for the MBean.

MBeanServerNotification.javaClass Represents a notification emitted by the MBean server through the MBeanServerDelegate MBean. The MBean Server emits the following types of notifications: MBean registration, MBean de-registration.

To receive to MBeanServerNotifications, you need to be declared as listener to the javax.management.MBeanServerDelegate javax.management.MBeanServerDelegate MBean that represents the MBeanServer.

MBeanServerPermission.javaClass A Permission to perform actions related to MBeanServers. The name of the permission specifies the operation requested or granted by the permission.
MBeanTrustPermission.javaClass This permission represents "trust" in a signer or codebase.

MBeanTrustPermission contains a target name but no actions list. A single target name, "register", is defined for this permission. The target "*" is also allowed, permitting "register" and any future targets that may be defined. Only the null value or the empty string are allowed for the action to allow the policy object to doCreate the permissions specified in the policy file.

If a signer, or codesource is granted this permission, then it is considered a trusted source for MBeans.

NotCompliantMBeanException.javaClass Exception which occurs when trying to register an object in the MBean server that is not a JMX compliant MBean.
Notification.javaClass The Notification class represents a notification emitted by an MBean. It contains a reference to the source MBean: if the notification has been forwarded through the MBean server, this is the object name of the MBean.
NotificationBroadcaster.javaInterface Should be implemented by an MBean that emits Notifications.
NotificationBroadcasterSupport.javaClass

Provides an implementation of javax.management.NotificationEmitter NotificationEmitter interface.

NotificationEmitter.javaInterface

Interface implemented by an MBean that emits Notifications.

NotificationFilter.javaInterface To be implemented by a any class acting as a notification filter.
NotificationFilterSupport.javaClass Provides an implementation of the javax.management.NotificationFilter interface. The filtering is performed on the notification type attribute.

Manages a list of enabled notification types. A method allows users to enable/disable as many notification types as required.

Then, before sending a notification to a listener registered with a filter, the notification broadcaster compares this notification type with all notification types enabled by the filter.

NotificationListener.javaInterface
ObjectInstance.javaClass Used to represent the object name of an MBean and its class name.
ObjectName.javaClass

Represents the object name of an MBean, or a pattern that can match the names of several MBeans.

OperationsException.javaClass Represents exceptions thrown in the MBean server when performing operations on MBeans.
PersistentMBean.javaInterface This class is the interface to be implemented by MBeans that are meant to be persistent.
Query.javaClass Constructs query object constraints.
QueryEval.javaClass Allows a query to be performed in the context of a specific MBean server.
QueryExp.javaInterface Represents relational constraints that can be used in database query "where clauses".
ReflectionException.javaClass Represents exceptions thrown in the MBean server when using the java.lang.reflect classes to invoke methods on MBeans.
RuntimeErrorException.javaClass When a java.lang.Error occurs in the agent it should be caught and re-thrown as a RuntimeErrorException.
RuntimeMBeanException.javaClass Represents runtime exceptions thrown by MBean methods in the agent.
RuntimeOperationsException.javaClass Represents runtime exceptions thrown in the agent when performing operations on MBeans.
ServiceNotFoundException.javaClass Represents exceptions raised when a requested service is not supported.
StandardMBean.javaClass

An MBean whose management interface is determined by reflection on a Java interface.

This class brings more flexibility to the notion of Management Interface in the use of Standard MBeans.

StringValueExp.javaClass Represents strings that are arguments to relational constraints.
ValueExp.javaInterface Represents values that can be passed as arguments to relational expressions.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.