< prev index next >

jdk/src/java.management/share/classes/module-info.java

Print this page




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the Java Management Extensions (JMX) API.
  28  * <P>
  29  * The JMX API consists of interfaces for monitoring and management of the
  30  * JVM and other components in the Java runtime.
  31  *

  32  * @since 9
  33  */
  34 module java.management {
  35 
  36     exports java.lang.management;
  37     exports javax.management;
  38     exports javax.management.loading;
  39     exports javax.management.modelmbean;
  40     exports javax.management.monitor;
  41     exports javax.management.openmbean;
  42     exports javax.management.relation;
  43     exports javax.management.remote;
  44     exports javax.management.timer;
  45     exports com.sun.jmx.remote.internal to
  46             java.management.rmi,
  47             jdk.management.agent;
  48     exports com.sun.jmx.remote.security to
  49             java.management.rmi,
  50             jdk.management.agent;
  51     exports com.sun.jmx.remote.util to java.management.rmi;


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the Java Management Extensions (JMX) API.
  28  * <P>
  29  * The JMX API consists of interfaces for monitoring and management of the
  30  * JVM and other components in the Java runtime.
  31  *
  32  * @moduleGraph
  33  * @since 9
  34  */
  35 module java.management {
  36 
  37     exports java.lang.management;
  38     exports javax.management;
  39     exports javax.management.loading;
  40     exports javax.management.modelmbean;
  41     exports javax.management.monitor;
  42     exports javax.management.openmbean;
  43     exports javax.management.relation;
  44     exports javax.management.remote;
  45     exports javax.management.timer;
  46     exports com.sun.jmx.remote.internal to
  47             java.management.rmi,
  48             jdk.management.agent;
  49     exports com.sun.jmx.remote.security to
  50             java.management.rmi,
  51             jdk.management.agent;
  52     exports com.sun.jmx.remote.util to java.management.rmi;
< prev index next >