< 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  * @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;




  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  * @uses javax.xml.soap.MessageFactory
  31  * @uses javax.xml.soap.SAAJMetaFactory
  32  * @uses javax.xml.soap.SOAPConnectionFactory
  33  * @uses javax.xml.soap.SOAPFactory
  34  * @uses javax.xml.ws.spi.Provider
  35  *
  36  * @moduleGraph
  37  * @since 9
  38  */
  39 @Deprecated(since="9", forRemoval=true)
  40 module java.xml.ws {
  41     requires transitive java.activation;
  42     requires transitive java.xml;
  43     requires transitive java.xml.bind;
  44     requires java.xml.ws.annotation;
  45     requires java.desktop;
  46     requires java.logging;
  47     requires java.management;
  48     requires jdk.httpserver;
  49     requires jdk.unsupported;
  50 
  51     uses javax.xml.ws.spi.Provider;
  52     uses javax.xml.soap.MessageFactory;
  53     uses javax.xml.soap.SAAJMetaFactory;
  54     uses javax.xml.soap.SOAPConnectionFactory;
  55     uses javax.xml.soap.SOAPFactory;


< prev index next >