equal
deleted
inserted
replaced
28 </head> |
28 </head> |
29 <body bgcolor="white"> |
29 <body bgcolor="white"> |
30 <p>Provides the core classes for the Java Management Extensions.</p> |
30 <p>Provides the core classes for the Java Management Extensions.</p> |
31 |
31 |
32 <p>The Java Management Extensions |
32 <p>The Java Management Extensions |
33 (JMX<sup><font size="-1">TM</font></sup>) API is a standard |
33 (JMX™) API is a standard |
34 API for management and monitoring. Typical uses include:</p> |
34 API for management and monitoring. Typical uses include:</p> |
35 |
35 |
36 <ul> |
36 <ul> |
37 <li>consulting and changing application configuration</li> |
37 <li>consulting and changing application configuration</li> |
38 |
38 |
85 |
85 |
86 <p>To make MBean implementation simple, the JMX API includes the |
86 <p>To make MBean implementation simple, the JMX API includes the |
87 notion of <em>Standard MBeans</em>. A Standard MBean is one |
87 notion of <em>Standard MBeans</em>. A Standard MBean is one |
88 whose attributes and operations are deduced from a Java |
88 whose attributes and operations are deduced from a Java |
89 interface using certain naming patterns, similar to those used |
89 interface using certain naming patterns, similar to those used |
90 by JavaBeans<sup><font size="-1">TM</font></sup>. For |
90 by JavaBeans™. For example, consider an interface like this:</p> |
91 example, consider an interface like this:</p> |
|
92 |
91 |
93 <pre> |
92 <pre> |
94 public interface ConfigurationMBean { |
93 public interface ConfigurationMBean { |
95 public int getCacheSize(); |
94 public int getCacheSize(); |
96 public void setCacheSize(int size); |
95 public void setCacheSize(int size); |