corba/src/java.corba/share/classes/module-info.java
changeset 42371 0b9bc767acf2
parent 41612 e2be7700de36
child 43739 ad66baddeba0
equal deleted inserted replaced
42279:f4e854a77aa3 42371:0b9bc767acf2
     1 /*
     1 /*
     2  * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2014, 2016, 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
    24  */
    24  */
    25 
    25 
    26 /**
    26 /**
    27  * Defines the Java binding of the OMG CORBA APIs, and the RMI-IIOP API.
    27  * Defines the Java binding of the OMG CORBA APIs, and the RMI-IIOP API.
    28  */
    28  */
       
    29 @Deprecated(since="9", forRemoval=true)
    29 module java.corba {
    30 module java.corba {
    30     requires public java.desktop;
    31     requires transitive java.desktop;
    31     requires public java.rmi;
    32     requires transitive java.rmi;
    32     requires java.logging;
    33     requires java.logging;
    33     requires java.naming;
    34     requires java.naming;
    34     requires java.transaction;
    35     requires java.transaction;
    35     requires jdk.unsupported;
    36     requires jdk.unsupported;
    36 
    37 
    63     exports org.omg.PortableServer.POAPackage;
    64     exports org.omg.PortableServer.POAPackage;
    64     exports org.omg.PortableServer.ServantLocatorPackage;
    65     exports org.omg.PortableServer.ServantLocatorPackage;
    65     exports org.omg.PortableServer.portable;
    66     exports org.omg.PortableServer.portable;
    66     exports org.omg.SendingContext;
    67     exports org.omg.SendingContext;
    67     exports org.omg.stub.java.rmi;
    68     exports org.omg.stub.java.rmi;
    68     exports com.sun.corba.se.impl.util to
    69 
    69         jdk.rmic;
    70     // rmic --iiop
    70     exports com.sun.jndi.cosnaming to
    71     exports com.sun.corba.se.impl.util to jdk.rmic;
    71         java.naming;
    72 
    72     exports com.sun.jndi.url.corbaname to
    73     // JNDI CosNaming provider
    73         java.naming;
    74     opens com.sun.jndi.cosnaming to java.naming;  // jndiprovider.properties
    74     exports com.sun.jndi.url.iiop to
    75     exports com.sun.jndi.url.corbaname to java.naming;
    75         java.naming;
    76     exports com.sun.jndi.url.iiop to java.naming;
    76     exports com.sun.jndi.url.iiopname to
    77     exports com.sun.jndi.url.iiopname to java.naming;
    77         java.naming;
       
    78 }
    78 }