jaxws/src/share/classes/com/sun/tools/internal/ws/package-info.java
author thurka
Mon, 16 Nov 2009 15:33:05 +0100
changeset 4240 ca8d98aeb09e
parent 3530 18fb7507984b
permissions -rw-r--r--
6858708: HotspotDiagnosticMXBean.setVMOption() throws NullPointerException Summary: Add a null check for the VM option string Reviewed-by: mchung, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
474761f14bca Initial load
duke
parents:
diff changeset
     1
/*
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 8
diff changeset
     2
 * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
8
474761f14bca Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
474761f14bca Initial load
duke
parents:
diff changeset
     4
 *
474761f14bca Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
474761f14bca Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
474761f14bca Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
474761f14bca Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
474761f14bca Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
474761f14bca Initial load
duke
parents:
diff changeset
    10
 *
474761f14bca Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
474761f14bca Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
474761f14bca Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
474761f14bca Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
474761f14bca Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
474761f14bca Initial load
duke
parents:
diff changeset
    16
 *
474761f14bca Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
474761f14bca Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
474761f14bca Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
474761f14bca Initial load
duke
parents:
diff changeset
    20
 *
474761f14bca Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
474761f14bca Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
474761f14bca Initial load
duke
parents:
diff changeset
    23
 * have any questions.
474761f14bca Initial load
duke
parents:
diff changeset
    24
 */
474761f14bca Initial load
duke
parents:
diff changeset
    25
474761f14bca Initial load
duke
parents:
diff changeset
    26
/**
3530
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    27
 * <h1>JAX-WS 2.1 Tools</h1>
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 8
diff changeset
    28
 * This document describes the tools included with JAX-WS 2.0.1.
8
474761f14bca Initial load
duke
parents:
diff changeset
    29
 *
474761f14bca Initial load
duke
parents:
diff changeset
    30
 * {@DotDiagram
474761f14bca Initial load
duke
parents:
diff changeset
    31
     digraph G {
474761f14bca Initial load
duke
parents:
diff changeset
    32
       // external tools
474761f14bca Initial load
duke
parents:
diff changeset
    33
       APT;
474761f14bca Initial load
duke
parents:
diff changeset
    34
474761f14bca Initial load
duke
parents:
diff changeset
    35
       // ANT tasks
474761f14bca Initial load
duke
parents:
diff changeset
    36
       node [style=filled,color=lightyellow];
474761f14bca Initial load
duke
parents:
diff changeset
    37
       "WsGen ANT Task"; "WsImport ANT Task"; "Apt ANT Task";
474761f14bca Initial load
duke
parents:
diff changeset
    38
474761f14bca Initial load
duke
parents:
diff changeset
    39
      // commandline
474761f14bca Initial load
duke
parents:
diff changeset
    40
       node [style=filled,color=lightpink];
474761f14bca Initial load
duke
parents:
diff changeset
    41
       wsgen; wsimport;
474761f14bca Initial load
duke
parents:
diff changeset
    42
474761f14bca Initial load
duke
parents:
diff changeset
    43
       // libraries
474761f14bca Initial load
duke
parents:
diff changeset
    44
      node [style=filled,color=lightblue];
3530
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    45
      WsimportTool; WsgenTool;"WSAP"; WebServiceAP; WSDLModeler;WSDLParser;SeiGenerator;ServiceGenerator;ExceptionGenerator;"JAXB XJC APIs";CodeModel;
8
474761f14bca Initial load
duke
parents:
diff changeset
    46
474761f14bca Initial load
duke
parents:
diff changeset
    47
       // aps
474761f14bca Initial load
duke
parents:
diff changeset
    48
#       node [style=filled,color=lightpink];
474761f14bca Initial load
duke
parents:
diff changeset
    49
#       "JAX-WS"; tools; runtime; SPI; "Annotation Processor";
474761f14bca Initial load
duke
parents:
diff changeset
    50
474761f14bca Initial load
duke
parents:
diff changeset
    51
       "Apt ANT Task" -> APT;
3530
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    52
       "WsGen ANT Task" -> wsgen -> WsgenTool;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    53
       "WsImport ANT Task" -> wsimport -> WsimportTool;
8
474761f14bca Initial load
duke
parents:
diff changeset
    54
3530
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    55
       WsgenTool -> APT -> WSAP -> WebServiceAP;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    56
       WsimportTool -> WSDLModeler;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    57
       WSDLModeler->WSDLParser;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    58
       WSDLModeler->"JAXB XJC APIs"
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    59
       WsimportTool->SeiGenerator->CodeModel;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    60
       WsimportTool->ServiceGenerator->CodeModel;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    61
       WsimportTool->ExceptionGenerator->CodeModel;
18fb7507984b 6813167: 6u14 JAX-WS audit mutable static bugs
asaha
parents: 2678
diff changeset
    62
       WebServiceAP->CodeModel
8
474761f14bca Initial load
duke
parents:
diff changeset
    63
     }
474761f14bca Initial load
duke
parents:
diff changeset
    64
 * }
474761f14bca Initial load
duke
parents:
diff changeset
    65
 * <div align=right>
474761f14bca Initial load
duke
parents:
diff changeset
    66
 * <b>Legend:</b> blue: implementation classes, pink: command-line toosl, white: external tool, yellow: ANT tasks
474761f14bca Initial load
duke
parents:
diff changeset
    67
 * </div>
474761f14bca Initial load
duke
parents:
diff changeset
    68
 *
474761f14bca Initial load
duke
parents:
diff changeset
    69
 * <h2>ANT Tasks</h2>
474761f14bca Initial load
duke
parents:
diff changeset
    70
   <d1>
474761f14bca Initial load
duke
parents:
diff changeset
    71
 *  <dt>{@link com.sun.tools.internal.ws.ant.Apt Apt}
474761f14bca Initial load
duke
parents:
diff changeset
    72
 *  <dd>An ANT task to invoke <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/apt.html">APT</a>.
474761f14bca Initial load
duke
parents:
diff changeset
    73
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 8
diff changeset
    74
 *  <dt>{@link com.sun.tools.internal.ws.ant.WsGen2 WsGen}
8
474761f14bca Initial load
duke
parents:
diff changeset
    75
 *  <dd>
474761f14bca Initial load
duke
parents:
diff changeset
    76
 *    An ANT task to invoke {@link com.sun.tools.internal.ws.WsGen WsGen}
474761f14bca Initial load
duke
parents:
diff changeset
    77
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 8
diff changeset
    78
 *  <dt>{@link com.sun.tools.internal.ws.ant.WsImport2 WsImport}
8
474761f14bca Initial load
duke
parents:
diff changeset
    79
 *  <dd>
474761f14bca Initial load
duke
parents:
diff changeset
    80
 *    An ANT task to invoke {@link com.sun.tools.internal.ws.WsImport WsImport}
474761f14bca Initial load
duke
parents:
diff changeset
    81
 *
474761f14bca Initial load
duke
parents:
diff changeset
    82
 *  </d1>
474761f14bca Initial load
duke
parents:
diff changeset
    83
 * <h2>Command-line Tools</h2>
474761f14bca Initial load
duke
parents:
diff changeset
    84
   <d1>
474761f14bca Initial load
duke
parents:
diff changeset
    85
 *  <dt><a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/apt.html">APT</a>
474761f14bca Initial load
duke
parents:
diff changeset
    86
     <dd>A Java SE tool and framework for processing annotations. APT will invoke a JAX-WS AnnotationProcossor for
474761f14bca Initial load
duke
parents:
diff changeset
    87
 *   processing Java source  files with javax.jws.* annotations and making them web services.
474761f14bca Initial load
duke
parents:
diff changeset
    88
 *   APT will compile the Java source files and generate any additional classes needed to make an javax.jws.WebService
474761f14bca Initial load
duke
parents:
diff changeset
    89
 *   annotated class a Web service.
474761f14bca Initial load
duke
parents:
diff changeset
    90
 *
474761f14bca Initial load
duke
parents:
diff changeset
    91
 *  <dt>{@link com.sun.tools.internal.ws.WsGen WsGen}
474761f14bca Initial load
duke
parents:
diff changeset
    92
 *  <dd>Tool to process a compiled javax.jws.WebService annotated class and to generate the necessary classes to make
474761f14bca Initial load
duke
parents:
diff changeset
    93
 *  it a Web service.
474761f14bca Initial load
duke
parents:
diff changeset
    94
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 8
diff changeset
    95
 *  <dt>{@link com.sun.tools.internal.ws.ant.WsImport2 WsImport}
8
474761f14bca Initial load
duke
parents:
diff changeset
    96
 *  <dd>
474761f14bca Initial load
duke
parents:
diff changeset
    97
 *    Tool to import a WSDL and to generate an SEI (a javax.jws.WebService) interface that can be either implemented
474761f14bca Initial load
duke
parents:
diff changeset
    98
 *    on the server to build a web service, or can be used on the client to invoke the web service.
474761f14bca Initial load
duke
parents:
diff changeset
    99
 *  </d1>
474761f14bca Initial load
duke
parents:
diff changeset
   100
 * <h2>Implementation Classes</h2>
474761f14bca Initial load
duke
parents:
diff changeset
   101
 *  <d1>
474761f14bca Initial load
duke
parents:
diff changeset
   102
 *    <dt>{@link com.sun.tools.internal.ws.processor.model.Model Model}
474761f14bca Initial load
duke
parents:
diff changeset
   103
 *    <dd>The model is used to represent the entire Web Service.  The JAX-WS ProcessorActions can process
474761f14bca Initial load
duke
parents:
diff changeset
   104
 *    this Model to generate Java artifacts such as the service interface.
474761f14bca Initial load
duke
parents:
diff changeset
   105
 *
474761f14bca Initial load
duke
parents:
diff changeset
   106
 *
474761f14bca Initial load
duke
parents:
diff changeset
   107
 *    <dt>{@link com.sun.tools.internal.ws.processor.modeler.Modeler Modeler}
474761f14bca Initial load
duke
parents:
diff changeset
   108
 *    <dd>A Modeler is used to create a Model of a Web Service from a particular Web
474761f14bca Initial load
duke
parents:
diff changeset
   109
 *    Web Service description such as a WSDL
474761f14bca Initial load
duke
parents:
diff changeset
   110
 *    file.
474761f14bca Initial load
duke
parents:
diff changeset
   111
 *
474761f14bca Initial load
duke
parents:
diff changeset
   112
 *    <dt>{@link com.sun.tools.internal.ws.processor.modeler.wsdl.WSDLModeler WSDLModeler}
474761f14bca Initial load
duke
parents:
diff changeset
   113
 *    <dd>The WSDLModeler processes a WSDL to create a Model.
474761f14bca Initial load
duke
parents:
diff changeset
   114
 *
474761f14bca Initial load
duke
parents:
diff changeset
   115
 *    <dt>{@link com.sun.tools.internal.ws.processor.modeler.annotation.WebServiceAP WebServiceAP}
474761f14bca Initial load
duke
parents:
diff changeset
   116
 *    <dd>WebServiceAP is a APT AnnotationProcessor for processing javax.jws.* and
474761f14bca Initial load
duke
parents:
diff changeset
   117
 *    javax.xml.ws.* annotations. This class is used either by the WsGen (CompileTool) tool or
474761f14bca Initial load
duke
parents:
diff changeset
   118
 *    idirectly via the {@link com.sun.istack.internal.ws.WSAP WSAP} when invoked by APT.
474761f14bca Initial load
duke
parents:
diff changeset
   119
 *
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 8
diff changeset
   120
 *    <dt>{@link com.sun.istack.internal.ws.AnnotationProcessorFactoryImpl WSAP}
8
474761f14bca Initial load
duke
parents:
diff changeset
   121
 *    <dd>This is the entry point for the WebServiceAP when APT is invoked on a SEI
474761f14bca Initial load
duke
parents:
diff changeset
   122
 *    annotated with the javax.jws.WebService annotation.
474761f14bca Initial load
duke
parents:
diff changeset
   123
 *   </d1>
474761f14bca Initial load
duke
parents:
diff changeset
   124
 *
474761f14bca Initial load
duke
parents:
diff changeset
   125
 * @ArchitectureDocument
474761f14bca Initial load
duke
parents:
diff changeset
   126
 **/
474761f14bca Initial load
duke
parents:
diff changeset
   127
package com.sun.tools.internal.ws;