jdk/src/jdk.jstatd/share/classes/module-info.java
changeset 43533 33d180b3b647
parent 37675 a9be5f4baa63
child 44417 a431edba1629
equal deleted inserted replaced
43532:5028c6b02af5 43533:33d180b3b647
     1 /*
     1 /*
     2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 module jdk.jstatd {
    26 module jdk.jstatd {
    27     requires java.rmi;
    27     requires java.rmi;
    28     requires jdk.jvmstat;
    28     requires jdk.internal.jvmstat;
    29 
    29 
    30     // RMI needs to serialize types in this package
    30     // RMI needs to serialize types in this package
    31     exports sun.jvmstat.monitor.remote to java.rmi;
    31     exports sun.jvmstat.monitor.remote to java.rmi;
    32 
    32 
    33     provides sun.jvmstat.monitor.MonitoredHostService with sun.jvmstat.perfdata.monitor.protocol.rmi.MonitoredHostRmiService;
    33     provides sun.jvmstat.monitor.MonitoredHostService with sun.jvmstat.perfdata.monitor.protocol.rmi.MonitoredHostRmiService;