< prev index next >

jaxws/src/java.xml.ws/share/classes/module-info.java

Print this page




  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 Java API for XML-Based Web Services (JAX-WS), and
  28  * the Web Services Metadata API.
  29  *

  30  * @since 9
  31  */
  32 @Deprecated(since="9", forRemoval=true)
  33 module java.xml.ws {
  34     requires transitive java.activation;
  35     requires transitive java.xml;
  36     requires transitive java.xml.bind;
  37     requires java.xml.ws.annotation;
  38     requires java.desktop;
  39     requires java.logging;
  40     requires java.management;
  41     requires jdk.httpserver;
  42     requires jdk.unsupported;
  43 
  44     uses javax.xml.ws.spi.Provider;
  45     uses javax.xml.soap.MessageFactory;
  46     uses javax.xml.soap.SAAJMetaFactory;
  47     uses javax.xml.soap.SOAPConnectionFactory;
  48     uses javax.xml.soap.SOAPFactory;
  49 




  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 Java API for XML-Based Web Services (JAX-WS), and
  28  * the Web Services Metadata API.
  29  *
  30  * @moduleGraph
  31  * @since 9
  32  */
  33 @Deprecated(since="9", forRemoval=true)
  34 module java.xml.ws {
  35     requires transitive java.activation;
  36     requires transitive java.xml;
  37     requires transitive java.xml.bind;
  38     requires java.xml.ws.annotation;
  39     requires java.desktop;
  40     requires java.logging;
  41     requires java.management;
  42     requires jdk.httpserver;
  43     requires jdk.unsupported;
  44 
  45     uses javax.xml.ws.spi.Provider;
  46     uses javax.xml.soap.MessageFactory;
  47     uses javax.xml.soap.SAAJMetaFactory;
  48     uses javax.xml.soap.SOAPConnectionFactory;
  49     uses javax.xml.soap.SOAPFactory;
  50 


< prev index next >