< prev index next >

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

Print this page




   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 Remote Method Invocation (RMI) API.
  28  *















  29  * @moduleGraph
  30  * @since 9
  31  */
  32 module java.rmi {
  33     requires java.logging;
  34 
  35     exports java.rmi;
  36     exports java.rmi.activation;
  37     exports java.rmi.dgc;
  38     exports java.rmi.registry;
  39     exports java.rmi.server;
  40     exports javax.rmi.ssl;
  41     // com.sun.rmi.rmid contains permissions classes that must be
  42     // accessible to the security manager at initialization time
  43     exports com.sun.rmi.rmid to java.base;
  44     exports sun.rmi.registry to
  45         jdk.management.agent;
  46     exports sun.rmi.server to
  47         java.management.rmi,
  48         jdk.management.agent,


   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 Remote Method Invocation (RMI) API.
  28  *
  29  * <p> The JDK implementation of this module includes the <em>{@index rmid rmid}</em>
  30  * tool that starts the activation system
  31  * daemon that allows objects to be registered and activated in a 
  32  * Java Virtual Machine and the <em>{@index rmiregistry rmiregistry}</em> tool
  33  * that starts a remote object registry.
  34  *
  35  * <p>
  36  * <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
  37  * <dt class="simpleTagLabel">Tool Guides:</dt>
  38  * <dd> {@extLink rmid_tool_reference rmid},
  39  *      {@extLink rmiregistry_tool_reference rmiregistry}</dd>
  40  * </dl>
  41  *
  42  * @uses java.rmi.server.RMIClassLoaderSpi
  43  *
  44  * @moduleGraph
  45  * @since 9
  46  */
  47 module java.rmi {
  48     requires java.logging;
  49 
  50     exports java.rmi;
  51     exports java.rmi.activation;
  52     exports java.rmi.dgc;
  53     exports java.rmi.registry;
  54     exports java.rmi.server;
  55     exports javax.rmi.ssl;
  56     // com.sun.rmi.rmid contains permissions classes that must be
  57     // accessible to the security manager at initialization time
  58     exports com.sun.rmi.rmid to java.base;
  59     exports sun.rmi.registry to
  60         jdk.management.agent;
  61     exports sun.rmi.server to
  62         java.management.rmi,
  63         jdk.management.agent,
< prev index next >