src/java.management.rmi/share/classes/module-info.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43503
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     1
/*
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     4
 *
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    10
 *
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    15
 * accompanied this code).
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    16
 *
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    20
 *
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    23
 * questions.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    24
 */
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    25
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    26
/**
45528
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    27
 * Defines the {@linkplain javax.management.remote.rmi RMI connector}
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    28
 * for the Java Management Extensions (JMX) Remote API.
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    29
 *
45782
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    30
 * <dl>
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    31
 * <dt class="simpleTagLabel" style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">Providers:</dt>
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    32
 * <dd>This module provides the
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    33
 * {@link javax.management.remote.JMXConnectorProvider} service,
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    34
 * which creates JMX connector clients using the RMI protocol.
45528
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    35
 * Instances of {@code JMXConnector} can be obtained via the
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    36
 * {@link javax.management.remote.JMXConnectorFactory#newJMXConnector
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    37
 * JMXConnectorFactory.newJMXConnector} factory method.
45782
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    38
 * It also provides the {@link javax.management.remote.JMXConnectorServerProvider} service,
a7697c107dd9 8182776: Fix typos in module declarations
mr
parents: 45654
diff changeset
    39
 * which creates JMX connector servers using the RMI protocol.
45528
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    40
 * Instances of {@code JMXConnectorServer} can be obtained via the
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    41
 * {@link javax.management.remote.JMXConnectorServerFactory#newJMXConnectorServer
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    42
 * JMXConnectorServerFactory.newJMXConnectorServer} factory method.
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    43
 * </dd>
1e8c2f062ad3 8181639: Add tool and services information to module summary
mchung
parents: 44417
diff changeset
    44
 * </dl>
43503
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    45
 *
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    46
 * @provides javax.management.remote.JMXConnectorProvider
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    47
 * @provides javax.management.remote.JMXConnectorServerProvider
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    48
 *
44417
a431edba1629 8173303: Add module-subgraph images to main platform documentation
mchung
parents: 43710
diff changeset
    49
 * @moduleGraph
43710
8fa2058eb740 8173957: Fix @since in module-info.java in dev/jdk repo
mli
parents: 43503
diff changeset
    50
 * @since 9
43503
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    51
 */
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    52
module java.management.rmi {
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    53
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
    54
    requires java.naming;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
    55
43503
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    56
    requires transitive java.management;
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    57
    requires transitive java.rmi;
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    58
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    59
    exports javax.management.remote.rmi;
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    60
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    61
    // The qualified export below is required to preserve backward
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    62
    // compatibility for the legacy case where an ordered list
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    63
    // of package prefixes can be specified to the factory.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    64
    exports com.sun.jmx.remote.protocol.rmi to java.management;
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    65
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    66
    // jdk.management.agent needs to create an RMIExporter instance.
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    67
    exports com.sun.jmx.remote.internal.rmi to jdk.management.agent;
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    68
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    69
    // The java.management.rmi module provides implementations
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    70
    // of the JMXConnectorProvider and JMXConnectorServerProvider
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    71
    // services supporting the RMI protocol.
45654
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
    72
    provides javax.management.remote.JMXConnectorProvider with
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
    73
        com.sun.jmx.remote.protocol.rmi.ClientProvider;
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
    74
    provides javax.management.remote.JMXConnectorServerProvider with
5ff2edfa03fc 8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents: 45528
diff changeset
    75
        com.sun.jmx.remote.protocol.rmi.ServerProvider;
43503
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    76
bc7f8619ab70 8173607: JMX RMI connector should be in its own module
dfuchs
parents:
diff changeset
    77
}