/* * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /** *

JAX-WS 2.1 Tools

* This document describes the tools included with JAX-WS 2.0.1. * *

ANT Tasks

*
{@link com.sun.tools.internal.ws.ant.AnnotationProcessingTask AnnotationProcessing} *
An ANT task to invoke Annotation Processing. *
{@link com.sun.tools.internal.ws.ant.WsGen2 WsGen} *
* An ANT task to invoke {@link com.sun.tools.internal.ws.WsGen WsGen} *
{@link com.sun.tools.internal.ws.ant.WsImport2 WsImport} *
* An ANT task to invoke {@link com.sun.tools.internal.ws.WsImport WsImport} * * *

Command-line Tools

*
AP
A Java SE tool and framework for processing annotations. Annotation processing will invoke a JAX-WS AnnotationProcossor for * processing Java source files with javax.jws.* annotations and making them web services. * Annotation processing will compile the Java source files and generate any additional classes needed to make an javax.jws.WebService * annotated class a Web service. * *
{@link com.sun.tools.internal.ws.WsGen WsGen} *
Tool to process a compiled javax.jws.WebService annotated class and to generate the necessary classes to make * it a Web service. *
{@link com.sun.tools.internal.ws.ant.WsImport2 WsImport} *
* Tool to import a WSDL and to generate an SEI (a javax.jws.WebService) interface that can be either implemented * on the server to build a web service, or can be used on the client to invoke the web service. * *

Implementation Classes

* *
{@link com.sun.tools.internal.ws.processor.model.Model Model} *
The model is used to represent the entire Web Service. The JAX-WS ProcessorActions can process * this Model to generate Java artifacts such as the service interface. * * *
{@link com.sun.tools.internal.ws.processor.modeler.Modeler Modeler} *
A Modeler is used to create a Model of a Web Service from a particular Web * Web Service description such as a WSDL * file. * *
{@link com.sun.tools.internal.ws.processor.modeler.wsdl.WSDLModeler WSDLModeler} *
The WSDLModeler processes a WSDL to create a Model. * *
{@link com.sun.tools.internal.ws.processor.modeler.annotation.WebServiceAp WebServiceAp} *
WebServiceAp is a AnnotationProcessor for processing javax.jws.* and * javax.xml.ws.* annotations. This class is used either by the WsGen (CompileTool) tool or * idirectly via the {@link com.sun.istack.internal.ws.WSAP WSAP} when invoked by Annotation Processing. * * * @ArchitectureDocument **/ package com.sun.tools.internal.ws;