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


   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,
  49         jdk.jconsole;
< prev index next >