You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by pe...@apache.org on 2022/03/10 15:51:09 UTC

[netbeans] branch master updated: Upgrade Ant library JAX-WS from 2.2.6 to 2.3.3 (#3607)

This is an automated email from the ASF dual-hosted git repository.

pepness pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new a7200bb  Upgrade Ant library JAX-WS from 2.2.6 to 2.3.3 (#3607)
a7200bb is described below

commit a7200bb5b0087ee29df8dee021fa1d37799ef39b
Author: José Contreras <pe...@apache.org>
AuthorDate: Thu Mar 10 15:50:58 2022 +0000

    Upgrade Ant library JAX-WS from 2.2.6 to 2.3.3 (#3607)
    
    
    -Mavenize jaxws-api external jars
    -Utilize jakarta libraries instead of javax
    -Update license type to EDL-1.0 where needed
    -Remove unneeded dependencies
    -Fix wrong paths directing to jaxws and jaxb jars
    -Replace old javax dependencies with new ones from Eclipse Jakarta:
    --jaxws-api > jakarta.xml.ws-api
    --jsr181-api > jakarta.jws-api
    --saaj-api > jakarta.xml.soap-api
---
 .../nbproject/project.properties                   |    2 +-
 .../netbeans/modules/tomcat5/util/LogViewer.java   |    2 +-
 .../netbeans/modules/tomcat5/util/ServerLog.java   |    2 +-
 .../websvc.design/nbproject/project.properties     |    8 +-
 .../websvc.jaxwsmodel/nbproject/project.properties |    6 +-
 .../modules/websvc/api/jaxws/project/WSUtils.java  |    6 +-
 .../websvc.manager/nbproject/project.properties    |    2 +-
 .../modules/websvc/manager/codegen/Wsdl2Java.java  |    2 +-
 .../modules/websvc/manager/test/SetupUtil.java     |    2 +-
 .../qa-functional/src/projects/LibrariesTest.java  |   39 +-
 java/websvc.jaxws21/external/binaries-list         |   30 +-
 .../external/jaxws-2.2.6-cddl10-license.txt        |  388 --
 .../external/jaxws-2.2.6-cddl11-license.txt        |  355 --
 ...v2-license.txt => jaxws-2.3.5-alv2-license.txt} |   10 +-
 .../external/jaxws-2.3.5-edl1-license.txt          |   36 +
 .../external/jaxws-2.3.5-epl2-license.txt          |   94 +
 .../external/stax2-api-4.2.1-license.txt           |   19 +-
 .../org-netbeans-modules-websvc-jaxws21.sig        | 4499 +-------------------
 java/websvc.jaxws21/nbproject/project.properties   |   36 +-
 java/websvc.jaxws21/nbproject/project.xml          |   25 +-
 .../modules/websvc/jaxws21/Bundle.properties       |    8 +-
 .../netbeans/modules/websvc/jaxws21/jaxws21.xml    |   21 +-
 java/websvc.jaxws21api/arch.xml                    |    4 +-
 java/websvc.jaxws21api/external/binaries-list      |    5 +-
 .../external/jakarta.xml.ws-api-2.3.3-license.txt  |   36 +
 .../external/jaxws-2.2.6-api-license.txt           |  356 --
 .../org-netbeans-modules-websvc-jaxws21api.sig     |  216 +-
 .../websvc.jaxws21api/nbproject/project.properties |   14 +-
 java/websvc.jaxws21api/nbproject/project.xml       |   12 +-
 .../nbbuild/extlibs/ignored-binary-overlaps        |    4 -
 .../licenses/BSD-stax2-api                         |   17 +-
 .../websvc.saas.api/nbproject/project.properties   |    4 +-
 .../modules/websvc/saas/util/SetupUtil.java        |    2 +-
 33 files changed, 615 insertions(+), 5647 deletions(-)

diff --git a/enterprise/j2ee.dd.webservice/nbproject/project.properties b/enterprise/j2ee.dd.webservice/nbproject/project.properties
index 562e263..84b9ff7 100644
--- a/enterprise/j2ee.dd.webservice/nbproject/project.properties
+++ b/enterprise/j2ee.dd.webservice/nbproject/project.properties
@@ -26,7 +26,7 @@ javadoc.docfiles=${basedir}/doc
 # needed for the WebServiceTestCase class
 test.unit.cp.extra=\
     ${nb_all}/enterprise/j2ee.dd/external/javaee-api-5.jar:\
-    ${websvc.jaxws21api.dir}/modules/ext/jaxws21/api/jsr181-api.jar
+    ${websvc.jaxws21api.dir}/modules/ext/jaxws22/api/jakarta.jws-api.jar
 test.config.stableBTD.includes=**/*Test.class
 
 requires.nb.javac=true
diff --git a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/LogViewer.java b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/LogViewer.java
index 363a57d..44b6851 100644
--- a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/LogViewer.java
+++ b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/LogViewer.java
@@ -217,7 +217,7 @@ public class LogViewer extends Thread {
             }
         } else {
             if (line.contains("java.lang.LinkageError: JAXB 2.0 API")) { // NOI18N
-                File jaxwsApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxws21/api/jaxws-api.jar", null, false); // NOI18N
+                File jaxwsApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxws22/api/jakarta.xml.ws-api.jar", null, false); // NOI18N
                 File jaxbApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxb/api/jaxb-api.jar", null, false); // NOI18N
                 File endoresedDir = tomcatManager.getTomcatProperties().getJavaEndorsedDir();
                 if (jaxwsApi != null && jaxbApi != null) {
diff --git a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/ServerLog.java b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/ServerLog.java
index 716ed03..b6ea757 100644
--- a/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/ServerLog.java
+++ b/enterprise/tomcat5/src/org/netbeans/modules/tomcat5/util/ServerLog.java
@@ -269,7 +269,7 @@ class ServerLog {
             } else {
                 writer.println(line);
                 if (line.startsWith("SEVERE: WSSERVLET11: failed to parse runtime descriptor: java.lang.LinkageError:")) { // NOI18N
-                    File jaxwsApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxws21/api/jaxws-api.jar", null, false); // NOI18N
+                    File jaxwsApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxws22/api/jakarta.xml.ws-api.jar", null, false); // NOI18N
                     File jaxbApi  = InstalledFileLocator.getDefault().locate("modules/ext/jaxb/api/jaxb-api.jar", null, false); // NOI18N
                     File endoresedDir = tomcatManager.getTomcatProperties().getJavaEndorsedDir();
                     if (jaxwsApi != null && jaxbApi != null) {
diff --git a/enterprise/websvc.design/nbproject/project.properties b/enterprise/websvc.design/nbproject/project.properties
index a70ef3a..f2fd585 100644
--- a/enterprise/websvc.design/nbproject/project.properties
+++ b/enterprise/websvc.design/nbproject/project.properties
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-javac.compilerargs=-Xlint:unchecked
-javac.source=1.6
-test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws21/api
-test.unit.cp.extra=${websvc.jaxws21api.dir}/modules/ext/jaxws21/api/jsr181-api.jar
+javac.compilerargs=-Xlint -Xlint:-serial
+javac.source=1.8
+test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws22/api
+test.unit.cp.extra=${websvc.jaxws21api.dir}/modules/ext/jaxws22/api/jakarta.jws-api.jar
diff --git a/enterprise/websvc.jaxwsmodel/nbproject/project.properties b/enterprise/websvc.jaxwsmodel/nbproject/project.properties
index 6ced215..11b540d 100644
--- a/enterprise/websvc.jaxwsmodel/nbproject/project.properties
+++ b/enterprise/websvc.jaxwsmodel/nbproject/project.properties
@@ -14,8 +14,10 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-javac.source=1.6
-test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws21/api
+
+javac.compilerargs=-Xlint -Xlint:-serial
+javac.source=1.8
+test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws22/api
 
 test.config.stableBTD.includes=**/*Test.class
 test.config.stableBTD.excludes=\
diff --git a/enterprise/websvc.jaxwsmodel/src/org/netbeans/modules/websvc/api/jaxws/project/WSUtils.java b/enterprise/websvc.jaxwsmodel/src/org/netbeans/modules/websvc/api/jaxws/project/WSUtils.java
index 7c44abf..990eaa7 100644
--- a/enterprise/websvc.jaxwsmodel/src/org/netbeans/modules/websvc/api/jaxws/project/WSUtils.java
+++ b/enterprise/websvc.jaxwsmodel/src/org/netbeans/modules/websvc/api/jaxws/project/WSUtils.java
@@ -360,7 +360,7 @@ public class WSUtils {
     }
     
     private static String getJaxWsApiDir() {
-        File jaxwsApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxws22/api/jaxws-api.jar", null, false); // NOI18N
+        File jaxwsApi = InstalledFileLocator.getDefault().locate("modules/ext/jaxws22/api/jakarta.xml.ws-api.jar", null, false); // NOI18N
         if (jaxwsApi!=null) {
             File jaxbApi =  InstalledFileLocator.getDefault().locate("modules/ext/jaxb/api/jaxb-api.jar", null, false); // NOI18N
             return jaxwsApi.getParent()+(jaxbApi != null? ":"+jaxbApi.getParent() : ""); //NOI18N
@@ -408,9 +408,9 @@ public class WSUtils {
 
     private static List<URL> getJaxWsApiJars() throws IOException {
         List<URL> urls = new ArrayList<URL>();
-        File apiJar = InstalledFileLocator.getDefault().locate("modules/ext/jaxws22/api/jaxws-api.jar", null, false); // NOI18N
+        File apiJar = InstalledFileLocator.getDefault().locate("modules/ext/jaxws22/api/jakarta.xml.ws-api.jar", null, false); // NOI18N
         if (apiJar != null) {
-            URL url = new URL("jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jaxws-api.jar!/");
+            URL url = new URL("jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jakarta.xml.ws-api.jar!/");
             /*URL url = apiJar.toURI().toURL();
             if (FileUtil.isArchiveFile(url)) {
                 urls.add(FileUtil.getArchiveRoot(url));
diff --git a/enterprise/websvc.manager/nbproject/project.properties b/enterprise/websvc.manager/nbproject/project.properties
index 4d969e8..2755544 100644
--- a/enterprise/websvc.manager/nbproject/project.properties
+++ b/enterprise/websvc.manager/nbproject/project.properties
@@ -17,4 +17,4 @@
 
 javac.compilerargs=-Xlint -Xlint:-serial
 javac.source=1.8
-test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws21/api
+test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws22/api
diff --git a/enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/codegen/Wsdl2Java.java b/enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/codegen/Wsdl2Java.java
index 10ac3f5..4d4008e 100644
--- a/enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/codegen/Wsdl2Java.java
+++ b/enterprise/websvc.manager/src/org/netbeans/modules/websvc/manager/codegen/Wsdl2Java.java
@@ -74,7 +74,7 @@ public class Wsdl2Java {
     
     // TODO generate this dynamically instead of using a hardcoded value
     private static final String JAXB_ENDORSED_REF = "modules/ext/jaxb/api/jaxb-api.jar";
-    private static final String JAXWS_ENDORSED_REF = "modules/ext/jaxws22/api/jaxws-api.jar";
+    private static final String JAXWS_ENDORSED_REF = "modules/ext/jaxws22/api/jakarta.xml.ws-api.jar";
     
     private final String userDir = System.getProperty("netbeans.user");
     
diff --git a/enterprise/websvc.manager/test/unit/src/org/netbeans/modules/websvc/manager/test/SetupUtil.java b/enterprise/websvc.manager/test/unit/src/org/netbeans/modules/websvc/manager/test/SetupUtil.java
index 22a7cc5..d7db60c 100644
--- a/enterprise/websvc.manager/test/unit/src/org/netbeans/modules/websvc/manager/test/SetupUtil.java
+++ b/enterprise/websvc.manager/test/unit/src/org/netbeans/modules/websvc/manager/test/SetupUtil.java
@@ -58,7 +58,7 @@ public class SetupUtil {
     private static final String CATALOG_FILE = "uszip-asmx-catalog/catalog.xml";
     private static final String WSDL_FILE = "uszip-asmx-catalog/www.webservicemart.com/uszip.asmx.wsdl";
     
-    private static final String ENDORSED_REF = "modules/ext/jaxws21/api/jaxws-api.jar";
+    private static final String ENDORSED_REF = "modules/ext/jaxws22/api/jakarta.xml.ws-api.jar";
     private static final String JAXWS_LIB_PROPERTY = "libs.jaxws21.classpath";
     
     public static SetupData commonSetUp(File workingDir) throws Exception {
diff --git a/java/java.project.ui/test/qa-functional/src/projects/LibrariesTest.java b/java/java.project.ui/test/qa-functional/src/projects/LibrariesTest.java
index 15b0459..5b095e4 100644
--- a/java/java.project.ui/test/qa-functional/src/projects/LibrariesTest.java
+++ b/java/java.project.ui/test/qa-functional/src/projects/LibrariesTest.java
@@ -131,23 +131,19 @@ public class LibrariesTest extends JellyTestCase {
         set.add("jar:nbinst://org.netbeans.modules.form/modules/ext/AbsoluteLayout.jar!/");
         librariesUrls.put("absolutelayout", set);
         set = new TreeSet<String>();
-        set.add("jar:nbinst:///modules/ext/jaxws21/FastInfoset.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/activation.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/jaxb-api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/jaxws-api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/jsr173_api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/jsr181-api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/saaj-api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/http.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jaxb-impl.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jaxb-xjc.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jaxws-rt.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jaxws-tools.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jsr250-api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/saaj-impl.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/sjsxp.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/stax-ex.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/streambuffer.jar!/");
+        set.add("jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/api/jaxb-api.jar!/");
+        set.add("jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/activation.jar!/");
+        set.add("jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-impl.jar!/");
+        set.add("jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-xjc.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/api/jakarta.jws-api.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/api/jakarta.xml.soap-api.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/api/jakarta.xml.ws-api.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/FastInfoset.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/jaxws-rt.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/jaxws-tools.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/saaj-impl.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/stax-ex.jar!/");
+        set.add("jar:nbinst:///modules/ext/jaxws22/streambuffer.jar!/");
         librariesUrls.put("jaxws20", set);
         set = new TreeSet<String>();
         set.add("jar:nbinst:///docs/org-netbeans-libs-javacapi.zip!/");
@@ -159,11 +155,10 @@ public class LibrariesTest extends JellyTestCase {
         set.add("jar:nbinst://org.netbeans.libs.jstl/modules/ext/jstl-impl.jar!/");
         librariesUrls.put("jstl", set);
         set = new TreeSet<String>();
-        set.add("jar:nbinst:///modules/ext/jaxws21/activation.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/jaxb-api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/api/jsr173_api.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jaxb-impl.jar!/");
-        set.add("jar:nbinst:///modules/ext/jaxws21/jaxb-xjc.jar!/");
+        set.add("jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/api/jaxb-api.jar!/");
+        set.add("jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/activation.jar!/");
+        set.add("jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-impl.jar!/");
+        set.add("jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-xjc.jar!/");
         librariesUrls.put("jaxb20", set);
         set = new TreeSet<String>();
         set.add("jar:nbinst://org.netbeans.modules.swingapp/docs/appframework-0.30-doc.zip!/");
diff --git a/java/websvc.jaxws21/external/binaries-list b/java/websvc.jaxws21/external/binaries-list
index 96c7b58..4ce7dd1 100644
--- a/java/websvc.jaxws21/external/binaries-list
+++ b/java/websvc.jaxws21/external/binaries-list
@@ -15,18 +15,18 @@
 # specific language governing permissions and limitations
 # under the License.
 
-279E959309368046456F10EFC2BF0BD61CE98CF0 javax.xml.ws:jaxws-api:2.2.6:javadoc
-E8C1C096162A146C2D84135C5036EDF54C1B1D38 com.sun.xml.fastinfoset:FastInfoset:1.2.12
-3502C55C7AD2085ECE6B38202B5169DD9177E0A2 org.glassfish.gmbal:gmbal-api-only:3.1.0-b001
-260AC0DBF841E1D19AE0405A894515E67EF41F4B org.glassfish.ha:ha-api:3.1.8
-1AA1579AE5ECD41920C4F355B0A9EF40B68315DD javax.mail:mail:1.4
-F98B197F1C26536A709E6016CC238E79E58AA6E3 com.sun.xml.ws:jaxws-rt:2.2.6-1
-036033A238FBDFBF6FB47B7F3E644C90D0E9A805 com.sun.xml.ws:jaxws-tools:2.2.6-1
-707686D845FAEDE060B79BDF018A25A469A611B4 org.glassfish.external:management-api:3.0.0-b012
-E0B2ED6E9CCAAFE3E96294A181C09E3AAE18AA90 org.jvnet.mimepull:mimepull:1.8
-AE9BFCE521AAB950D13D4447ACEC0BC1EFC5C9E8 com.sun.xml.ws:policy:2.3.1
-353EC287FADE0062410E10D788350BDFB0F9C13B com.sun.xml.messaging.saaj:saaj-impl:1.3.18
-21075D99A7A3BD39EF5A987BC310E905DA9FF899 org.jvnet.staxex:stax-ex:1.7
-0466EAB062E9D1A3CE2C4631B6D09B5E5C0CBD1B org.codehaus.woodstox:stax2-api:3.1.1
-AB7C3890FF7A0A5331C2F8938B02472E3D73A0D8 com.sun.xml.stream.buffer:streambuffer:1.4
-B8DF430DDC4947BC7B68AF5ED09B8C1C5B527553 org.codehaus.woodstox:woodstox-core-asl:4.1.2
\ No newline at end of file
+7A7F3AEBC29CC48F0EBB36E04A0A2BC07810B279 jakarta.xml.ws:jakarta.xml.ws-api:2.3.3:javadoc
+1FF236E65AA1ADBBD4A905EB6024FB941A875816 com.sun.xml.ws:jaxws-rt:2.3.5
+24ACE1F82679B5E40D59B5F07247D837005C6CFF com.sun.xml.ws:jaxws-tools:2.3.5
+319DF0E9D536C1A01ACDFE49B6E82B97D2393073 com.sun.mail:jakarta.mail:1.6.7
+BB625B47077E7D5A1CEE739809770EF21686F1D0 com.sun.xml.ws:policy:2.7.10
+5A2390FED950856EABA2719B8339D2D8D53DD00A com.sun.xml.fastinfoset:FastInfoset:2.0.0
+AE486D7FA91A2F24B8354E3EF843226C574C3644 com.sun.xml.stream.buffer:streambuffer:1.5.10
+1CD4AA51EA7A8987FE930083E3CD05E2AC72505B com.sun.xml.messaging.saaj:saaj-impl:1.5.3
+34E9DA5CAF0DED547B73AA2604E07B76E083CDAF org.glassfish.gmbal:gmbal-api-only:4.0.3
+1F7D0981A35D00097ED3FAEAD8FCEB2E4E5220E2 org.glassfish.ha:ha-api:3.1.13
+27374B34EFEEC7949B25729BF9EAB89A221F375C org.glassfish.external:management-api:3.2.3
+60F9A7991AD9EC1A280DB8DEEA216A91C10AAE74 org.jvnet.mimepull:mimepull:1.9.15
+4D69B68EE007AA15238CD4477392068B32747DF3 org.jvnet.staxex:stax-ex:1.8.3
+670748292899C53B1963730D9EB7F8AB71314E90 com.fasterxml.woodstox:woodstox-core:6.2.8
+A3F7325C52240418C2BA257B103C3C550E140C83 org.codehaus.woodstox:stax2-api:4.2.1
diff --git a/java/websvc.jaxws21/external/jaxws-2.2.6-cddl10-license.txt b/java/websvc.jaxws21/external/jaxws-2.2.6-cddl10-license.txt
deleted file mode 100644
index 2d131eb..0000000
--- a/java/websvc.jaxws21/external/jaxws-2.2.6-cddl10-license.txt
+++ /dev/null
@@ -1,388 +0,0 @@
-Name: JAX-WS
-Description: JAX-WS Reference Implementation
-Version: 2.2.6
-Origin: Oracle
-URL: http://jax-ws.java.net/
-License: CDDL-1.0
-Files: gmbal-api-only-3.1.0-b001.jar, ha-api-3.1.8.jar, mail-1.4.jar, management-api-3.0.0-b012.jar
-
-COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
-
-1. Definitions.
-
-1.1. "Contributor" means each individual or entity that
-creates or contributes to the creation of Modifications.
-
-1.2. "Contributor Version" means the combination of the
-Original Software, prior Modifications used by a
-Contributor (if any), and the Modifications made by that
-particular Contributor.
-
-1.3. "Covered Software" means (a) the Original Software, or
-(b) Modifications, or (c) the combination of files
-containing Original Software with files containing
-Modifications, in each case including portions thereof.
-
-1.4. "Executable" means the Covered Software in any form
-other than Source Code.
-
-1.5. "Initial Developer" means the individual or entity
-that first makes Original Software available under this
-License.
-
-1.6. "Larger Work" means a work which combines Covered
-Software or portions thereof with code not governed by the
-terms of this License.
-
-1.7. "License" means this document.
-
-1.8. "Licensable" means having the right to grant, to the
-maximum extent possible, whether at the time of the initial
-grant or subsequently acquired, any and all of the rights
-conveyed herein.
-
-1.9. "Modifications" means the Source Code and Executable
-form of any of the following:
-
-A. Any file that results from an addition to,
-deletion from or modification of the contents of a
-file containing Original Software or previous
-Modifications;
-
-B. Any new file that contains any part of the
-Original Software or previous Modification; or
-
-C. Any new file that is contributed or otherwise made
-available under the terms of this License.
-
-1.10. "Original Software" means the Source Code and
-Executable form of computer software code that is
-originally released under this License.
-
-1.11. "Patent Claims" means any patent claim(s), now owned
-or hereafter acquired, including without limitation,
-method, process, and apparatus claims, in any patent
-Licensable by grantor.
-
-1.12. "Source Code" means (a) the common form of computer
-software code in which modifications are made and (b)
-associated documentation included in or with such code.
-
-1.13. "You" (or "Your") means an individual or a legal
-entity exercising rights under, and complying with all of
-the terms of, this License. For legal entities, "You"
-includes any entity which controls, is controlled by, or is
-under common control with You. For purposes of this
-definition, "control" means (a) the power, direct or
-indirect, to cause the direction or management of such
-entity, whether by contract or otherwise, or (b) ownership
-of more than fifty percent (50%) of the outstanding shares
-or beneficial ownership of such entity.
-
-2. License Grants.
-
-2.1. The Initial Developer Grant.
-
-Conditioned upon Your compliance with Section 3.1 below and
-subject to third party intellectual property claims, the
-Initial Developer hereby grants You a world-wide,
-royalty-free, non-exclusive license:
-
-(a) under intellectual property rights (other than
-patent or trademark) Licensable by Initial Developer,
-to use, reproduce, modify, display, perform,
-sublicense and distribute the Original Software (or
-portions thereof), with or without Modifications,
-and/or as part of a Larger Work; and
-
-(b) under Patent Claims infringed by the making,
-using or selling of Original Software, to make, have
-made, use, practice, sell, and offer for sale, and/or
-otherwise dispose of the Original Software (or
-portions thereof).
-
-(c) The licenses granted in Sections 2.1(a) and (b)
-are effective on the date Initial Developer first
-distributes or otherwise makes the Original Software
-available to a third party under the terms of this
-License.
-
-(d) Notwithstanding Section 2.1(b) above, no patent
-license is granted: (1) for code that You delete from
-the Original Software, or (2) for infringements
-caused by: (i) the modification of the Original
-Software, or (ii) the combination of the Original
-Software with other software or devices.
-
-2.2. Contributor Grant.
-
-Conditioned upon Your compliance with Section 3.1 below and
-subject to third party intellectual property claims, each
-Contributor hereby grants You a world-wide, royalty-free,
-non-exclusive license:
-
-(a) under intellectual property rights (other than
-patent or trademark) Licensable by Contributor to
-use, reproduce, modify, display, perform, sublicense
-and distribute the Modifications created by such
-Contributor (or portions thereof), either on an
-unmodified basis, with other Modifications, as
-Covered Software and/or as part of a Larger Work; and
-
-(b) under Patent Claims infringed by the making,
-using, or selling of Modifications made by that
-Contributor either alone and/or in combination with
-its Contributor Version (or portions of such
-combination), to make, use, sell, offer for sale,
-have made, and/or otherwise dispose of: (1)
-Modifications made by that Contributor (or portions
-thereof); and (2) the combination of Modifications
-made by that Contributor with its Contributor Version
-(or portions of such combination).
-
-(c) The licenses granted in Sections 2.2(a) and
-2.2(b) are effective on the date Contributor first
-distributes or otherwise makes the Modifications
-available to a third party.
-
-(d) Notwithstanding Section 2.2(b) above, no patent
-license is granted: (1) for any code that Contributor
-has deleted from the Contributor Version; (2) for
-infringements caused by: (i) third party
-modifications of Contributor Version, or (ii) the
-combination of Modifications made by that Contributor
-with other software (except as part of the
-Contributor Version) or other devices; or (3) under
-Patent Claims infringed by Covered Software in the
-absence of Modifications made by that Contributor.
-
-3. Distribution Obligations.
-
-3.1. Availability of Source Code.
-
-Any Covered Software that You distribute or otherwise make
-available in Executable form must also be made available in
-Source Code form and that Source Code form must be
-distributed only under the terms of this License. You must
-include a copy of this License with every copy of the
-Source Code form of the Covered Software You distribute or
-otherwise make available. You must inform recipients of any
-such Covered Software in Executable form as to how they can
-obtain such Covered Software in Source Code form in a
-reasonable manner on or through a medium customarily used
-for software exchange.
-
-3.2. Modifications.
-
-The Modifications that You create or to which You
-contribute are governed by the terms of this License. You
-represent that You believe Your Modifications are Your
-original creation(s) and/or You have sufficient rights to
-grant the rights conveyed by this License.
-
-3.3. Required Notices.
-
-You must include a notice in each of Your Modifications
-that identifies You as the Contributor of the Modification.
-You may not remove or alter any copyright, patent or
-trademark notices contained within the Covered Software, or
-any notices of licensing or any descriptive text giving
-attribution to any Contributor or the Initial Developer.
-
-3.4. Application of Additional Terms.
-
-You may not offer or impose any terms on any Covered
-Software in Source Code form that alters or restricts the
-applicable version of this License or the recipients'
-rights hereunder. You may choose to offer, and to charge a
-fee for, warranty, support, indemnity or liability
-obligations to one or more recipients of Covered Software.
-However, you may do so only on Your own behalf, and not on
-behalf of the Initial Developer or any Contributor. You
-must make it absolutely clear that any such warranty,
-support, indemnity or liability obligation is offered by
-You alone, and You hereby agree to indemnify the Initial
-Developer and every Contributor for any liability incurred
-by the Initial Developer or such Contributor as a result of
-warranty, support, indemnity or liability terms You offer.
-
-3.5. Distribution of Executable Versions.
-
-You may distribute the Executable form of the Covered
-Software under the terms of this License or under the terms
-of a license of Your choice, which may contain terms
-different from this License, provided that You are in
-compliance with the terms of this License and that the
-license for the Executable form does not attempt to limit
-or alter the recipient's rights in the Source Code form
-from the rights set forth in this License. If You
-distribute the Covered Software in Executable form under a
-different license, You must make it absolutely clear that
-any terms which differ from this License are offered by You
-alone, not by the Initial Developer or Contributor. You
-hereby agree to indemnify the Initial Developer and every
-Contributor for any liability incurred by the Initial
-Developer or such Contributor as a result of any such terms
-You offer.
-
-3.6. Larger Works.
-
-You may create a Larger Work by combining Covered Software
-with other code not governed by the terms of this License
-and distribute the Larger Work as a single product. In such
-a case, You must make sure the requirements of this License
-are fulfilled for the Covered Software.
-
-4. Versions of the License.
-
-4.1. New Versions.
-
-Sun Microsystems, Inc. is the initial license steward and
-may publish revised and/or new versions of this License
-from time to time. Each version will be given a
-distinguishing version number. Except as provided in
-Section 4.3, no one other than the license steward has the
-right to modify this License.
-
-4.2. Effect of New Versions.
-
-You may always continue to use, distribute or otherwise
-make the Covered Software available under the terms of the
-version of the License under which You originally received
-the Covered Software. If the Initial Developer includes a
-notice in the Original Software prohibiting it from being
-distributed or otherwise made available under any
-subsequent version of the License, You must distribute and
-make the Covered Software available under the terms of the
-version of the License under which You originally received
-the Covered Software. Otherwise, You may also choose to
-use, distribute or otherwise make the Covered Software
-available under the terms of any subsequent version of the
-License published by the license steward.
-
-4.3. Modified Versions.
-
-When You are an Initial Developer and You want to create a
-new license for Your Original Software, You may create and
-use a modified version of this License if You: (a) rename
-the license and remove any references to the name of the
-license steward (except to note that the license differs
-from this License); and (b) otherwise make it clear that
-the license contains terms which differ from this License.
-
-5. DISCLAIMER OF WARRANTY.
-
-COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
-BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
-SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
-PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
-COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
-INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
-ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
-WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
-ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
-DISCLAIMER.
-
-6. TERMINATION.
-
-6.1. This License and the rights granted hereunder will
-terminate automatically if You fail to comply with terms
-herein and fail to cure such breach within 30 days of
-becoming aware of the breach. Provisions which, by their
-nature, must remain in effect beyond the termination of
-this License shall survive.
-
-6.2. If You assert a patent infringement claim (excluding
-declaratory judgment actions) against Initial Developer or
-a Contributor (the Initial Developer or Contributor against
-whom You assert such claim is referred to as "Participant")
-alleging that the Participant Software (meaning the
-Contributor Version where the Participant is a Contributor
-or the Original Software where the Participant is the
-Initial Developer) directly or indirectly infringes any
-patent, then any and all rights granted directly or
-indirectly to You by such Participant, the Initial
-Developer (if the Initial Developer is not the Participant)
-and all Contributors under Sections 2.1 and/or 2.2 of this
-License shall, upon 60 days notice from Participant
-terminate prospectively and automatically at the expiration
-of such 60 day notice period, unless if within such 60 day
-period You withdraw Your claim with respect to the
-Participant Software against such Participant either
-unilaterally or pursuant to a written agreement with
-Participant.
-
-6.3. In the event of termination under Sections 6.1 or 6.2
-above, all end user licenses that have been validly granted
-by You or any distributor hereunder prior to termination
-(excluding licenses granted to You by any distributor)
-shall survive termination.
-
-7. LIMITATION OF LIABILITY.
-
-UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
-(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
-INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
-COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
-LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
-CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
-LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
-STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
-COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
-INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
-LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
-INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
-APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
-NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
-CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
-APPLY TO YOU.
-
-8. U.S. GOVERNMENT END USERS.
-
-The Covered Software is a "commercial item," as that term is
-defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
-computer software" (as that term is defined at 48 C.F.R.
-252.227-7014(a)(1)) and "commercial computer software
-documentation" as such terms are used in 48 C.F.R. 12.212 (Sept.
-1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
-through 227.7202-4 (June 1995), all U.S. Government End Users
-acquire Covered Software with only those rights set forth herein.
-This U.S. Government Rights clause is in lieu of, and supersedes,
-any other FAR, DFAR, or other clause or provision that addresses
-Government rights in computer software under this License.
-
-9. MISCELLANEOUS.
-
-This License represents the complete agreement concerning subject
-matter hereof. If any provision of this License is held to be
-unenforceable, such provision shall be reformed only to the
-extent necessary to make it enforceable. This License shall be
-governed by the law of the jurisdiction specified in a notice
-contained within the Original Software (except to the extent
-applicable law, if any, provides otherwise), excluding such
-jurisdiction's conflict-of-law provisions. Any litigation
-relating to this License shall be subject to the jurisdiction of
-the courts located in the jurisdiction and venue specified in a
-notice contained within the Original Software, with the losing
-party responsible for costs, including, without limitation, court
-costs and reasonable attorneys' fees and expenses. The
-application of the United Nations Convention on Contracts for the
-International Sale of Goods is expressly excluded. Any law or
-regulation which provides that the language of a contract shall
-be construed against the drafter shall not apply to this License.
-You agree that You alone are responsible for compliance with the
-United States export administration regulations (and the export
-control laws and regulation of any other countries) when You use,
-distribute or otherwise make available any Covered Software.
-
-10. RESPONSIBILITY FOR CLAIMS.
-
-As between Initial Developer and the Contributors, each party is
-responsible for claims and damages arising, directly or
-indirectly, out of its utilization of rights under this License
-and You agree to work with Initial Developer and Contributors to
-distribute such responsibility on an equitable basis. Nothing
-herein is intended or shall be deemed to constitute any admission
-of liability.
diff --git a/java/websvc.jaxws21/external/jaxws-2.2.6-cddl11-license.txt b/java/websvc.jaxws21/external/jaxws-2.2.6-cddl11-license.txt
deleted file mode 100644
index 9219f5b..0000000
--- a/java/websvc.jaxws21/external/jaxws-2.2.6-cddl11-license.txt
+++ /dev/null
@@ -1,355 +0,0 @@
-Name: JAX-WS
-Description: JAX-WS Reference Implementation
-Version: 2.2.6
-Origin: Oracle
-URL: http://jax-ws.java.net/
-License: CDDL-1.1
-Files: jaxws-api-2.2.6-javadoc.jar, jaxws-rt-2.2.6-1.jar, jaxws-tools-2.2.6-1.jar, mimepull-1.8.jar, policy-2.3.1.jar, saaj-impl-1.3.18.jar, stax-ex-1.7.jar, streambuffer-1.4.jar
-
-COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1
-
-1. Definitions.
-
-    1.1. "Contributor" means each individual or entity that creates or
-    contributes to the creation of Modifications.
-
-    1.2. "Contributor Version" means the combination of the Original
-    Software, prior Modifications used by a Contributor (if any), and the
-    Modifications made by that particular Contributor.
-
-    1.3. "Covered Software" means (a) the Original Software, or (b)
-    Modifications, or (c) the combination of files containing Original
-    Software with files containing Modifications, in each case including
-    portions thereof.
-
-    1.4. "Executable" means the Covered Software in any form other than
-    Source Code.
-
-    1.5. "Initial Developer" means the individual or entity that first makes
-    Original Software available under this License.
-
-    1.6. "Larger Work" means a work which combines Covered Software or
-    portions thereof with code not governed by the terms of this License.
-
-    1.7. "License" means this document.
-
-    1.8. "Licensable" means having the right to grant, to the maximum extent
-    possible, whether at the time of the initial grant or subsequently
-    acquired, any and all of the rights conveyed herein.
-
-    1.9. "Modifications" means the Source Code and Executable form of any of
-    the following:
-
-    A. Any file that results from an addition to, deletion from or
-    modification of the contents of a file containing Original Software or
-    previous Modifications;
-
-    B. Any new file that contains any part of the Original Software or
-    previous Modification; or
-
-    C. Any new file that is contributed or otherwise made available under
-    the terms of this License.
-
-    1.10. "Original Software" means the Source Code and Executable form of
-    computer software code that is originally released under this License.
-
-    1.11. "Patent Claims" means any patent claim(s), now owned or hereafter
-    acquired, including without limitation, method, process, and apparatus
-    claims, in any patent Licensable by grantor.
-
-    1.12. "Source Code" means (a) the common form of computer software code
-    in which modifications are made and (b) associated documentation
-    included in or with such code.
-
-    1.13. "You" (or "Your") means an individual or a legal entity exercising
-    rights under, and complying with all of the terms of, this License. For
-    legal entities, "You" includes any entity which controls, is controlled
-    by, or is under common control with You. For purposes of this
-    definition, "control" means (a) the power, direct or indirect, to cause
-    the direction or management of such entity, whether by contract or
-    otherwise, or (b) ownership of more than fifty percent (50%) of the
-    outstanding shares or beneficial ownership of such entity.
-
-2. License Grants.
-
-    2.1. The Initial Developer Grant.
-
-    Conditioned upon Your compliance with Section 3.1 below and subject to
-    third party intellectual property claims, the Initial Developer hereby
-    grants You a world-wide, royalty-free, non-exclusive license:
-
-    (a) under intellectual property rights (other than patent or trademark)
-    Licensable by Initial Developer, to use, reproduce, modify, display,
-    perform, sublicense and distribute the Original Software (or portions
-    thereof), with or without Modifications, and/or as part of a Larger
-    Work; and
-
-    (b) under Patent Claims infringed by the making, using or selling of
-    Original Software, to make, have made, use, practice, sell, and offer
-    for sale, and/or otherwise dispose of the Original Software (or portions
-    thereof).
-
-    (c) The licenses granted in Sections 2.1(a) and (b) are effective on the
-    date Initial Developer first distributes or otherwise makes the Original
-    Software available to a third party under the terms of this License.
-
-    (d) Notwithstanding Section 2.1(b) above, no patent license is granted:
-    (1) for code that You delete from the Original Software, or (2) for
-    infringements caused by: (i) the modification of the Original Software,
-    or (ii) the combination of the Original Software with other software or
-    devices.
-
-    2.2. Contributor Grant.
-
-    Conditioned upon Your compliance with Section 3.1 below and subject to
-    third party intellectual property claims, each Contributor hereby grants
-    You a world-wide, royalty-free, non-exclusive license:
-
-    (a) under intellectual property rights (other than patent or trademark)
-    Licensable by Contributor to use, reproduce, modify, display, perform,
-    sublicense and distribute the Modifications created by such Contributor
-    (or portions thereof), either on an unmodified basis, with other
-    Modifications, as Covered Software and/or as part of a Larger Work; and
-
-    (b) under Patent Claims infringed by the making, using, or selling of
-    Modifications made by that Contributor either alone and/or in
-    combination with its Contributor Version (or portions of such
-    combination), to make, use, sell, offer for sale, have made, and/or
-    otherwise dispose of: (1) Modifications made by that Contributor (or
-    portions thereof); and (2) the combination of Modifications made by that
-    Contributor with its Contributor Version (or portions of such
-    combination).
-
-    (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on
-    the date Contributor first distributes or otherwise makes the
-    Modifications available to a third party.
-
-    (d) Notwithstanding Section 2.2(b) above, no patent license is granted:
-    (1) for any code that Contributor has deleted from the Contributor
-    Version; (2) for infringements caused by: (i) third party modifications
-    of Contributor Version, or (ii) the combination of Modifications made by
-    that Contributor with other software (except as part of the Contributor
-    Version) or other devices; or (3) under Patent Claims infringed by
-    Covered Software in the absence of Modifications made by that
-    Contributor.
-
-3. Distribution Obligations.
-
-    3.1. Availability of Source Code.
-
-    Any Covered Software that You distribute or otherwise make available in
-    Executable form must also be made available in Source Code form and that
-    Source Code form must be distributed only under the terms of this
-    License. You must include a copy of this License with every copy of the
-    Source Code form of the Covered Software You distribute or otherwise
-    make available. You must inform recipients of any such Covered Software
-    in Executable form as to how they can obtain such Covered Software in
-    Source Code form in a reasonable manner on or through a medium
-    customarily used for software exchange.
-
-    3.2. Modifications.
-
-    The Modifications that You create or to which You contribute are
-    governed by the terms of this License. You represent that You believe
-    Your Modifications are Your original creation(s) and/or You have
-    sufficient rights to grant the rights conveyed by this License.
-
-    3.3. Required Notices.
-
-    You must include a notice in each of Your Modifications that identifies
-    You as the Contributor of the Modification. You may not remove or alter
-    any copyright, patent or trademark notices contained within the Covered
-    Software, or any notices of licensing or any descriptive text giving
-    attribution to any Contributor or the Initial Developer.
-
-    3.4. Application of Additional Terms.
-
-    You may not offer or impose any terms on any Covered Software in Source
-    Code form that alters or restricts the applicable version of this
-    License or the recipients' rights hereunder. You may choose to offer,
-    and to charge a fee for, warranty, support, indemnity or liability
-    obligations to one or more recipients of Covered Software. However, you
-    may do so only on Your own behalf, and not on behalf of the Initial
-    Developer or any Contributor. You must make it absolutely clear that any
-    such warranty, support, indemnity or liability obligation is offered by
-    You alone, and You hereby agree to indemnify the Initial Developer and
-    every Contributor for any liability incurred by the Initial Developer or
-    such Contributor as a result of warranty, support, indemnity or
-    liability terms You offer.
-
-    3.5. Distribution of Executable Versions.
-
-    You may distribute the Executable form of the Covered Software under the
-    terms of this License or under the terms of a license of Your choice,
-    which may contain terms different from this License, provided that You
-    are in compliance with the terms of this License and that the license
-    for the Executable form does not attempt to limit or alter the
-    recipient's rights in the Source Code form from the rights set forth in
-    this License. If You distribute the Covered Software in Executable form
-    under a different license, You must make it absolutely clear that any
-    terms which differ from this License are offered by You alone, not by
-    the Initial Developer or Contributor. You hereby agree to indemnify the
-    Initial Developer and every Contributor for any liability incurred by
-    the Initial Developer or such Contributor as a result of any such terms
-    You offer.
-
-    3.6. Larger Works.
-
-    You may create a Larger Work by combining Covered Software with other
-    code not governed by the terms of this License and distribute the Larger
-    Work as a single product. In such a case, You must make sure the
-    requirements of this License are fulfilled for the Covered Software.
-
-4. Versions of the License.
-
-    4.1. New Versions.
-
-    Oracle is the initial license steward and may publish revised and/or new
-    versions of this License from time to time. Each version will be given a
-    distinguishing version number. Except as provided in Section 4.3, no one
-    other than the license steward has the right to modify this License.
-
-    4.2. Effect of New Versions.
-
-    You may always continue to use, distribute or otherwise make the Covered
-    Software available under the terms of the version of the License under
-    which You originally received the Covered Software. If the Initial
-    Developer includes a notice in the Original Software prohibiting it from
-    being distributed or otherwise made available under any subsequent
-    version of the License, You must distribute and make the Covered
-    Software available under the terms of the version of the License under
-    which You originally received the Covered Software. Otherwise, You may
-    also choose to use, distribute or otherwise make the Covered Software
-    available under the terms of any subsequent version of the License
-    published by the license steward.
-
-    4.3. Modified Versions.
-
-    When You are an Initial Developer and You want to create a new license
-    for Your Original Software, You may create and use a modified version of
-    this License if You: (a) rename the license and remove any references to
-    the name of the license steward (except to note that the license differs
-    from this License); and (b) otherwise make it clear that the license
-    contains terms which differ from this License.
-
-5. DISCLAIMER OF WARRANTY.
-
-    COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
-    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
-    WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF
-    DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
-    THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
-    SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY
-    RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME
-    THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS
-    DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO
-    USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
-    DISCLAIMER.
-
-6. TERMINATION.
-
-    6.1. This License and the rights granted hereunder will terminate
-    automatically if You fail to comply with terms herein and fail to cure
-    such breach within 30 days of becoming aware of the breach. Provisions
-    which, by their nature, must remain in effect beyond the termination of
-    this License shall survive.
-
-    6.2. If You assert a patent infringement claim (excluding declaratory
-    judgment actions) against Initial Developer or a Contributor (the
-    Initial Developer or Contributor against whom You assert such claim is
-    referred to as "Participant") alleging that the Participant Software
-    (meaning the Contributor Version where the Participant is a Contributor
-    or the Original Software where the Participant is the Initial Developer)
-    directly or indirectly infringes any patent, then any and all rights
-    granted directly or indirectly to You by such Participant, the Initial
-    Developer (if the Initial Developer is not the Participant) and all
-    Contributors under Sections 2.1 and/or 2.2 of this License shall, upon
-    60 days notice from Participant terminate prospectively and
-    automatically at the expiration of such 60 day notice period, unless if
-    within such 60 day period You withdraw Your claim with respect to the
-    Participant Software against such Participant either unilaterally or
-    pursuant to a written agreement with Participant.
-
-    6.3. If You assert a patent infringement claim against Participant
-    alleging that the Participant Software directly or indirectly infringes
-    any patent where such claim is resolved (such as by license or
-    settlement) prior to the initiation of patent infringement litigation,
-    then the reasonable value of the licenses granted by such Participant
-    under Sections 2.1 or 2.2 shall be taken into account in determining the
-    amount or value of any payment or license.
-
-    6.4. In the event of termination under Sections 6.1 or 6.2 above, all
-    end user licenses that have been validly granted by You or any
-    distributor hereunder prior to termination (excluding licenses granted
-    to You by any distributor) shall survive termination.
-
-7. LIMITATION OF LIABILITY.
-
-    UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
-    (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
-    DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED
-    SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY
-    PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
-    OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF
-    GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL
-    OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
-    INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
-    LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
-    RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
-    PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
-    OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION
-    AND LIMITATION MAY NOT APPLY TO YOU.
-
-8. U.S. GOVERNMENT END USERS.
-
-    The Covered Software is a "commercial item," as that term is defined in
-    48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
-    software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1))
-    and "commercial computer software documentation" as such terms are used
-    in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and
-    48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government
-    End Users acquire Covered Software with only those rights set forth
-    herein. This U.S. Government Rights clause is in lieu of, and
-    supersedes, any other FAR, DFAR, or other clause or provision that
-    addresses Government rights in computer software under this License.
-
-9. MISCELLANEOUS.
-
-    This License represents the complete agreement concerning subject matter
-    hereof. If any provision of this License is held to be unenforceable,
-    such provision shall be reformed only to the extent necessary to make it
-    enforceable. This License shall be governed by the law of the
-    jurisdiction specified in a notice contained within the Original
-    Software (except to the extent applicable law, if any, provides
-    otherwise), excluding such jurisdiction's conflict-of-law provisions.
-    Any litigation relating to this License shall be subject to the
-    jurisdiction of the courts located in the jurisdiction and venue
-    specified in a notice contained within the Original Software, with the
-    losing party responsible for costs, including, without limitation, court
-    costs and reasonable attorneys' fees and expenses. The application of
-    the United Nations Convention on Contracts for the International Sale of
-    Goods is expressly excluded. Any law or regulation which provides that
-    the language of a contract shall be construed against the drafter shall
-    not apply to this License. You agree that You alone are responsible for
-    compliance with the United States export administration regulations (and
-    the export control laws and regulation of any other countries) when You
-    use, distribute or otherwise make available any Covered Software.
-
-10. RESPONSIBILITY FOR CLAIMS.
-
-    As between Initial Developer and the Contributors, each party is
-    responsible for claims and damages arising, directly or indirectly, out
-    of its utilization of rights under this License and You agree to work
-    with Initial Developer and Contributors to distribute such
-    responsibility on an equitable basis. Nothing herein is intended or
-    shall be deemed to constitute any admission of liability.
-
-NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION
-LICENSE (CDDL)
-
-The code released under the CDDL shall be governed by the laws of the
-State of California (excluding conflict-of-law provisions). Any
-litigation relating to this License shall be subject to the jurisdiction
-of the Federal Courts of the Northern District of California and the
-state courts of the State of California, with venue lying in Santa Clara
-County, California.
diff --git a/java/websvc.jaxws21/external/jaxws-2.2.6-alv2-license.txt b/java/websvc.jaxws21/external/jaxws-2.3.5-alv2-license.txt
similarity index 98%
rename from java/websvc.jaxws21/external/jaxws-2.2.6-alv2-license.txt
rename to java/websvc.jaxws21/external/jaxws-2.3.5-alv2-license.txt
index c8d6c56..bcfc5c9 100644
--- a/java/websvc.jaxws21/external/jaxws-2.2.6-alv2-license.txt
+++ b/java/websvc.jaxws21/external/jaxws-2.3.5-alv2-license.txt
@@ -1,10 +1,10 @@
 Name: JAX-WS
-Description: JAX-WS Reference Implementation
-Version: 2.2.6
-Origin: Oracle
-URL: http://jax-ws.java.net/
+Description: Eclipse Implementation of Jakarta XML Web Services
+Version: 2.3.5
+Origin: Eclipse EE4J
+URL: https://github.com/eclipse-ee4j/metro-jax-ws
 License: Apache-2.0
-Files: FastInfoset-1.2.12.jar, woodstox-core-asl-4.1.2.jar
+Files: FastInfoset-2.0.0.jar, woodstox-core-6.2.8.jar
 
                                  Apache License
                            Version 2.0, January 2004
diff --git a/java/websvc.jaxws21/external/jaxws-2.3.5-edl1-license.txt b/java/websvc.jaxws21/external/jaxws-2.3.5-edl1-license.txt
new file mode 100644
index 0000000..3d7eff5
--- /dev/null
+++ b/java/websvc.jaxws21/external/jaxws-2.3.5-edl1-license.txt
@@ -0,0 +1,36 @@
+Name: JAX-WS
+Description: Eclipse Implementation of Jakarta XML Web Services
+Version: 2.3.5
+Origin: Eclipse EE4J
+URL: https://github.com/eclipse-ee4j/metro-jax-ws
+License: EDL-1.0
+Files: jakarta.xml.ws-api-2.3.3-javadoc.jar, jaxws-rt-2.3.5.jar, jaxws-tools-2.3.5.jar, mimepull-1.9.15.jar, policy-2.7.10.jar, saaj-impl-1.5.3.jar, stax-ex-1.8.3.jar, streambuffer-1.5.10.jar, management-api-3.2.3.jar, gmbal-api-only-4.0.3.jar
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright notice,
+      this list of conditions and the following disclaimer in the documentation
+      and/or other materials provided with the distribution.
+    * Neither the name of the Eclipse Foundation, Inc. nor the names of its
+      contributors may be used to endorse or promote products derived from this
+      software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/java/websvc.jaxws21/external/jaxws-2.3.5-epl2-license.txt b/java/websvc.jaxws21/external/jaxws-2.3.5-epl2-license.txt
new file mode 100644
index 0000000..8a43e21
--- /dev/null
+++ b/java/websvc.jaxws21/external/jaxws-2.3.5-epl2-license.txt
@@ -0,0 +1,94 @@
+Name: JAX-WS
+Description: Eclipse Implementation of Jakarta XML Web Services
+Version: 2.3.5
+Origin: Eclipse EE4J
+URL: https://github.com/eclipse-ee4j/metro-jax-ws
+License: EPL-v20
+Files: jakarta.mail-1.6.7.jar, ha-api-3.1.13.jar
+
+Eclipse Public License - v 2.0
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (“AGREEMENT”). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. Definitions
+“Contribution” means:
+
+a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+i) changes to the Program, and
+ii) additions to the Program; where such changes and/or additions to the Program originate from and are Distributed by that particular Contributor. A Contribution “originates” from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include changes or additions to the Program that are not Modified Works.
+“Contributor” means any person or entity that Distributes the Program.
+
+“Licensed Patents” mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
+
+“Program” means the Contributions Distributed in accordance with this Agreement.
+
+“Recipient” means anyone who receives the Program under this Agreement or any Secondary License (as applicable), including Contributors.
+
+“Derivative Works” shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship.
+
+“Modified Works” shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or M [...]
+
+“Distribute” means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy.
+
+“Source Code” means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files.
+
+“Secondary License” means either the GNU General Public License, Version 2.0, or any later versions of that license, including any exceptions or additional permissions as identified by the initial Contributor.
+
+2. Grant of Rights
+a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works.
+
+b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in Source Code or other form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution cause [...]
+
+c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted here [...]
+
+d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
+
+e) Notwithstanding the terms of any Secondary License, no Contributor makes additional grants to any Recipient (other than those set forth in this Agreement) as a result of such Recipient's receipt of the Program under the terms of a Secondary License (if permitted under the terms of Section 3).
+
+3. Requirements
+3.1 If a Contributor Distributes the Program in any form, then:
+
+a) the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and informs Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and
+
+b) the Contributor may Distribute the Program under a license different than this Agreement, provided that such license:
+
+i) effectively disclaims on behalf of all other Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
+ii) effectively excludes on behalf of all other Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
+iii) does not attempt to limit or alter the recipients' rights in the Source Code under section 3.2; and
+iv) requires any subsequent distribution of the Program by any party to be under a license that satisfies the requirements of this section 3.
+3.2 When the Program is Distributed as Source Code:
+
+a) it must be made available under this Agreement, or if the Program (i) is combined with other material in a separate file or files made available under a Secondary License, and (ii) the initial Contributor attached to the Source Code the notice described in Exhibit A of this Agreement, then the Program may be made available under the terms of such Secondary Licenses, and
+b) a copy of this Agreement must be included with each copy of the Program.
+3.3 Contributors may not remove or alter any copyright, patent, trademark, attribution notices, disclaimers of warranty, or limitations of liability (“notices”) contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate notices.
+
+4. Commercial Distribution
+Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (“Commercial Con [...]
+
+For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims  [...]
+
+5. No Warranty
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks assoc [...]
+
+6. Disclaimer of Liability
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EX [...]
+
+7. General
+If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Reci [...]
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the respons [...]
+
+Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement.
+
+Exhibit A - Form of Secondary Licenses Notice
+“This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}.”
+
+Simply including a copy of this Agreement, including this Exhibit A is not sufficient to license the Source Code under Secondary Licenses.
+
+If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.
+
+You may add additional accurate notices of copyright ownership.
diff --git a/nbbuild/licenses/BSD-woodstox b/java/websvc.jaxws21/external/stax2-api-4.2.1-license.txt
similarity index 74%
rename from nbbuild/licenses/BSD-woodstox
rename to java/websvc.jaxws21/external/stax2-api-4.2.1-license.txt
index 79736f8..13704a4 100644
--- a/nbbuild/licenses/BSD-woodstox
+++ b/java/websvc.jaxws21/external/stax2-api-4.2.1-license.txt
@@ -1,26 +1,31 @@
-Copyright (c) 2004-2010, Woodstox Project (http://woodstox.codehaus.org/)
-All rights reserved.
+Name: Stax2 API
+Description: Extension API for Stax, Java pull-parsing API (STreaming Api for Xml)
+Version: 4.2.1
+Origin: FasterXML
+URL: https://github.com/FasterXML/stax2-api
+License: BSD-stax2-api
+Files: stax2-api-4.2.1.jar
+
+Copyright 2010-2022 FasterXML.com
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 
 1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
+
 2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
-3. Neither the name of the Woodstox XML Processor nor the names
-   of its contributors may be used to endorse or promote products derived
-   from this software without specific prior written permission.
 
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
+POSSIBILITY OF SUCH DAMAGE.
diff --git a/java/websvc.jaxws21/nbproject/org-netbeans-modules-websvc-jaxws21.sig b/java/websvc.jaxws21/nbproject/org-netbeans-modules-websvc-jaxws21.sig
index 797c326..8afaaeb 100644
--- a/java/websvc.jaxws21/nbproject/org-netbeans-modules-websvc-jaxws21.sig
+++ b/java/websvc.jaxws21/nbproject/org-netbeans-modules-websvc-jaxws21.sig
@@ -1,5 +1,5 @@
 #Signature file v4.1
-#Version 1.46
+#Version 1.48
 
 CLSS public abstract com.sun.codemodel.CodeWriter
 cons public init()
@@ -20,10 +20,25 @@ meth public void close() throws java.io.IOException
 supr com.sun.codemodel.CodeWriter
 hfds readOnly,readonlyFiles,target
 
-CLSS public abstract com.sun.tools.ws.api.TJavaGeneratorExtension
-cons public init()
-meth public abstract void writeMethodAnnotations(com.sun.tools.ws.api.wsdl.TWSDLOperation,com.sun.codemodel.JMethod)
+CLSS public abstract interface com.sun.istack.localization.Localizable
+fld public final static java.lang.String NOT_LOCALIZABLE = "\u0000"
+meth public abstract java.lang.Object[] getArguments()
+meth public abstract java.lang.String getKey()
+meth public abstract java.lang.String getResourceBundleName()
+meth public abstract java.util.ResourceBundle getResourceBundle(java.util.Locale)
+
+CLSS public com.sun.istack.localization.LocalizableMessageFactory
+cons public init(java.lang.String)
+ anno 0 java.lang.Deprecated()
+cons public init(java.lang.String,com.sun.istack.localization.LocalizableMessageFactory$ResourceBundleSupplier)
+innr public abstract interface static ResourceBundleSupplier
+meth public !varargs com.sun.istack.localization.Localizable getMessage(java.lang.String,java.lang.Object[])
 supr java.lang.Object
+hfds _bundlename,_rbSupplier
+
+CLSS public abstract interface static com.sun.istack.localization.LocalizableMessageFactory$ResourceBundleSupplier
+ outer com.sun.istack.localization.LocalizableMessageFactory
+meth public abstract java.util.ResourceBundle getResourceBundle(java.util.Locale)
 
 CLSS public abstract interface com.sun.tools.ws.api.wsdl.TWSDLExtension
 meth public abstract com.sun.tools.ws.api.wsdl.TWSDLExtensible getParent()
@@ -51,124 +66,6 @@ cons public init(java.lang.Throwable)
 meth public java.lang.String getDefaultResourceBundleName()
 supr com.sun.xml.ws.util.exception.JAXWSExceptionBase
 
-CLSS public com.sun.tools.ws.processor.generator.CustomExceptionGenerator
-cons public init()
-meth public com.sun.tools.ws.processor.generator.GeneratorBase getGenerator(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
-meth public static void generate(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
-meth public void visit(com.sun.tools.ws.processor.model.Fault) throws java.lang.Exception
-supr com.sun.tools.ws.processor.generator.GeneratorBase
-hfds faults
-
-CLSS public abstract com.sun.tools.ws.processor.generator.GeneratorBase
-cons protected init()
-fld protected boolean donotOverride
-fld protected com.sun.codemodel.JCodeModel cm
-fld protected com.sun.tools.ws.processor.model.Model model
-fld protected com.sun.tools.ws.wscompile.ErrorReceiver receiver
-fld protected com.sun.tools.ws.wscompile.WsimportOptions options
-fld protected java.lang.String wsdlLocation
-intf com.sun.tools.ws.processor.model.ModelVisitor
-meth protected com.sun.codemodel.JDefinedClass getClass(java.lang.String,com.sun.codemodel.ClassType) throws com.sun.codemodel.JClassAlreadyExistsException
-meth protected void log(java.lang.String)
-meth protected void writeHandlerConfig(java.lang.String,com.sun.codemodel.JDefinedClass,com.sun.tools.ws.wscompile.WsimportOptions)
-meth public java.util.List<java.lang.String> getJAXWSClassComment()
-meth public static java.util.List<java.lang.String> getJAXWSClassComment(java.lang.String)
-meth public void doGeneration()
-meth public void init(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
-meth public void visit(com.sun.tools.ws.processor.model.Block) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Fault) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Model) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Operation) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Parameter) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Port) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Request) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Response) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Service) throws java.lang.Exception
-supr java.lang.Object
-hfds destDir,targetVersion
-
-CLSS public final !enum com.sun.tools.ws.processor.generator.GeneratorConstants
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants DOTC
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants FAULT_CLASS_MEMBER_NAME
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants GET
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants IS
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants JAVA_SRC_SUFFIX
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants QNAME_SUFFIX
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants RESPONSE
-fld public final static com.sun.tools.ws.processor.generator.GeneratorConstants SIG_INNERCLASS
-meth public java.lang.String getValue()
-meth public static com.sun.tools.ws.processor.generator.GeneratorConstants valueOf(java.lang.String)
-meth public static com.sun.tools.ws.processor.generator.GeneratorConstants[] values()
-supr java.lang.Enum<com.sun.tools.ws.processor.generator.GeneratorConstants>
-hfds value
-
-CLSS public com.sun.tools.ws.processor.generator.GeneratorException
-cons public !varargs init(java.lang.String,java.lang.Object[])
-cons public init(java.lang.Throwable)
-meth public java.lang.String getDefaultResourceBundleName()
-supr com.sun.tools.ws.processor.ProcessorException
-
-CLSS public abstract com.sun.tools.ws.processor.generator.GeneratorExtension
-cons public init()
-meth public boolean validateOption(java.lang.String)
-meth public java.lang.String getBindingValue(java.lang.String,com.sun.xml.ws.api.SOAPVersion)
-meth public void writeWebServiceAnnotation(com.sun.tools.ws.processor.model.Model,com.sun.codemodel.JCodeModel,com.sun.codemodel.JDefinedClass,com.sun.tools.ws.processor.model.Port)
-meth public void writeWebServiceClientAnnotation(com.sun.tools.ws.wscompile.WsimportOptions,com.sun.codemodel.JCodeModel,com.sun.codemodel.JDefinedClass)
-supr java.lang.Object
-
-CLSS public com.sun.tools.ws.processor.generator.GeneratorUtil
-cons public init()
-meth public static boolean classExists(com.sun.tools.ws.wscompile.Options,java.lang.String)
-supr java.lang.Object
-
-CLSS public final com.sun.tools.ws.processor.generator.JavaGeneratorExtensionFacade
-meth public void writeMethodAnnotations(com.sun.tools.ws.api.wsdl.TWSDLOperation,com.sun.codemodel.JMethod)
-supr com.sun.tools.ws.api.TJavaGeneratorExtension
-hfds extensions
-
-CLSS public final com.sun.tools.ws.processor.generator.JwsImplGenerator
-meth public static boolean moveToImplDestDir(java.util.List<java.lang.String>,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
-meth public static java.util.List<java.lang.String> generate(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
-meth public void visit(com.sun.tools.ws.processor.model.Service)
-supr com.sun.tools.ws.processor.generator.GeneratorBase
-hfds TRANSLATION_MAP,implFiles
-hcls ImplFile
-
-CLSS public final com.sun.tools.ws.processor.generator.Names
-meth public static boolean isJavaReservedWord(java.lang.String)
-meth public static java.lang.String customExceptionClassName(com.sun.tools.ws.processor.model.Fault)
-meth public static java.lang.String customJavaTypeClassName(com.sun.tools.ws.processor.model.java.JavaInterface)
-meth public static java.lang.String getExceptionClassMemberName()
-meth public static java.lang.String getJavaMemberReadMethod(com.sun.tools.ws.processor.model.java.JavaStructureMember)
-meth public static java.lang.String getJavaReserverVarialbeName(java.lang.String)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public static java.lang.String getPackageName(java.lang.String)
-meth public static java.lang.String getPortName(com.sun.tools.ws.processor.model.Port)
-meth public static java.lang.String getResponseName(java.lang.String)
-meth public static java.lang.String stripQualifier(java.lang.String)
-supr java.lang.Object
-hfds RESERVED_WORDS
-
-CLSS public com.sun.tools.ws.processor.generator.SeiGenerator
-cons public init()
-meth public !varargs static void generate(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver,com.sun.tools.ws.api.TJavaGeneratorExtension[])
-meth public !varargs void init(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver,com.sun.tools.ws.api.TJavaGeneratorExtension[])
-meth public void visit(com.sun.tools.ws.processor.model.Model) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.Service) throws java.lang.Exception
-supr com.sun.tools.ws.processor.generator.GeneratorBase
-hfds extension,extensionHandlers,isDocStyle,sameParamStyle,serviceNS
-
-CLSS public com.sun.tools.ws.processor.generator.ServiceGenerator
-meth public static void generate(com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
-meth public void visit(com.sun.tools.ws.processor.model.Service)
-supr com.sun.tools.ws.processor.generator.GeneratorBase
-
-CLSS public com.sun.tools.ws.processor.generator.W3CAddressingJavaGeneratorExtension
-cons public init()
-meth public void writeMethodAnnotations(com.sun.tools.ws.api.wsdl.TWSDLOperation,com.sun.codemodel.JMethod)
-supr com.sun.tools.ws.api.TJavaGeneratorExtension
-
 CLSS public abstract com.sun.tools.ws.processor.model.AbstractType
 cons protected init()
 cons protected init(javax.xml.namespace.QName)
@@ -260,7 +157,6 @@ cons public init(java.lang.String,com.sun.tools.ws.wsdl.framework.Entity)
 meth public boolean isWsdlException()
 meth public com.sun.codemodel.JClass getExceptionClass()
 meth public com.sun.tools.ws.processor.model.Block getBlock()
-meth public com.sun.tools.ws.processor.model.Fault getParentFault()
 meth public com.sun.tools.ws.processor.model.java.JavaException getJavaException()
 meth public java.lang.String getJavaMemberName()
 meth public java.lang.String getName()
@@ -281,7 +177,7 @@ meth public void setSubfaultsSet(java.util.Set)
 meth public void setWsdlException(boolean)
 meth public void setWsdlFaultName(java.lang.String)
 supr com.sun.tools.ws.processor.model.ModelObject
-hfds block,elementName,exceptionClass,javaException,javaMemberName,name,parentFault,subfaults,wsdlException,wsdlFaultName
+hfds block,elementName,exceptionClass,javaException,javaMemberName,name,subfaults,wsdlException,wsdlFaultName
 
 CLSS public com.sun.tools.ws.processor.model.HeaderFault
 cons public init(com.sun.tools.ws.wsdl.framework.Entity)
@@ -352,7 +248,7 @@ hfds extraTypes,jaxBModel,name,services,servicesByName,source,targetNamespace
 
 CLSS public com.sun.tools.ws.processor.model.ModelException
 cons public !varargs init(java.lang.String,java.lang.Object[])
-cons public init(com.sun.xml.ws.util.localization.Localizable)
+cons public init(com.sun.istack.localization.Localizable)
 cons public init(java.lang.Throwable)
 meth public java.lang.String getDefaultResourceBundleName()
 supr com.sun.tools.ws.processor.ProcessorException
@@ -539,10 +435,6 @@ meth public void setPorts(java.util.List<com.sun.tools.ws.processor.model.Port>)
 supr com.sun.tools.ws.processor.model.ModelObject
 hfds javaInterface,name,ports,portsByName
 
-CLSS public abstract interface com.sun.tools.ws.processor.model.exporter.ExternalObject
-meth public abstract java.lang.String getType()
-meth public abstract void saveTo(org.xml.sax.ContentHandler)
-
 CLSS public com.sun.tools.ws.processor.model.java.JavaArrayType
 cons public init()
 cons public init(java.lang.String)
@@ -697,141 +589,6 @@ meth public void setRealName(java.lang.String)
 supr java.lang.Object
 hfds holder,holderName,holderPresent,initString,name,present,realName,type
 
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBElementMember
-cons public init()
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.jaxb.JAXBType)
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.jaxb.JAXBType,com.sun.tools.ws.processor.model.java.JavaStructureMember)
-meth public boolean isInherited()
-meth public boolean isRepeated()
-meth public com.sun.tools.ws.processor.model.java.JavaStructureMember getJavaStructureMember()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBProperty getProperty()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBType getType()
-meth public javax.xml.namespace.QName getName()
-meth public void setInherited(boolean)
-meth public void setJavaStructureMember(com.sun.tools.ws.processor.model.java.JavaStructureMember)
-meth public void setName(javax.xml.namespace.QName)
-meth public void setProperty(com.sun.tools.ws.processor.model.jaxb.JAXBProperty)
-meth public void setRepeated(boolean)
-meth public void setType(com.sun.tools.ws.processor.model.jaxb.JAXBType)
-supr java.lang.Object
-hfds JAXB_UNIQUE_PARRAM,_javaStructureMember,_name,_prop,_repeated,_type,isInherited
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBMapping
-cons public init()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBTypeAndAnnotation getType()
-meth public java.util.List<com.sun.tools.ws.processor.model.jaxb.JAXBProperty> getWrapperStyleDrilldown()
-meth public javax.xml.namespace.QName getElementName()
-meth public void setElementName(javax.xml.namespace.QName)
-supr java.lang.Object
-hfds elementName,type,wrapperStyleDrilldown
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBModel
-cons public init()
-cons public init(com.sun.tools.xjc.api.JAXBModel)
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBMapping get(java.lang.String)
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBMapping get(javax.xml.namespace.QName)
-meth public com.sun.tools.xjc.api.J2SJAXBModel getJ2SJAXBModel()
-meth public com.sun.tools.xjc.api.JAXBModel getRawJAXBModel()
-meth public com.sun.tools.xjc.api.S2JJAXBModel getS2JJAXBModel()
-meth public java.util.List<com.sun.tools.ws.processor.model.jaxb.JAXBMapping> getMappings()
-meth public java.util.Set<java.lang.String> getGeneratedClassNames()
-meth public void setGeneratedClassNames(java.util.Set<java.lang.String>)
-meth public void setMappings(java.util.List<com.sun.tools.ws.processor.model.jaxb.JAXBMapping>)
-supr java.lang.Object
-hfds byClassName,byQName,generatedClassNames,mappings,rawJAXBModel
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBProperty
-cons public init()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBTypeAndAnnotation getType()
-meth public java.lang.String getName()
-meth public javax.xml.namespace.QName getElementName()
-meth public javax.xml.namespace.QName getRawTypeName()
-meth public void setName(java.lang.String)
-supr java.lang.Object
-hfds elementName,name,rawTypeName,type
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBStructuredType
-cons public init()
-cons public init(com.sun.tools.ws.processor.model.jaxb.JAXBType)
-cons public init(javax.xml.namespace.QName)
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.java.JavaStructureType)
-meth public boolean isUnwrapped()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBStructuredType getParentType()
-meth public int getElementMembersCount()
-meth public java.util.Iterator getElementMembers()
-meth public java.util.Iterator getSubtypes()
-meth public java.util.List getElementMembersList()
-meth public java.util.Set getSubtypesSet()
-meth public void add(com.sun.tools.ws.processor.model.jaxb.JAXBElementMember)
-meth public void addSubtype(com.sun.tools.ws.processor.model.jaxb.JAXBStructuredType)
-meth public void setElementMembersList(java.util.List)
-meth public void setParentType(com.sun.tools.ws.processor.model.jaxb.JAXBStructuredType)
-meth public void setSubtypesSet(java.util.Set)
-supr com.sun.tools.ws.processor.model.jaxb.JAXBType
-hfds _elementMembers,_elementMembersByName,_parentType,_subtypes
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBType
-cons public init()
-cons public init(com.sun.tools.ws.processor.model.jaxb.JAXBType)
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.java.JavaType)
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.java.JavaType,com.sun.tools.ws.processor.model.jaxb.JAXBMapping,com.sun.tools.ws.processor.model.jaxb.JAXBModel)
-meth public boolean hasWrapperChildren()
-meth public boolean isLiteralType()
-meth public boolean isUnwrappable()
-meth public boolean isUnwrapped()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBMapping getJaxbMapping()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBModel getJaxbModel()
-meth public java.util.List<com.sun.tools.ws.processor.model.jaxb.JAXBProperty> getWrapperChildren()
-meth public void accept(com.sun.tools.ws.processor.model.jaxb.JAXBTypeVisitor) throws java.lang.Exception
-meth public void setJaxbMapping(com.sun.tools.ws.processor.model.jaxb.JAXBMapping)
-meth public void setJaxbModel(com.sun.tools.ws.processor.model.jaxb.JAXBModel)
-meth public void setUnwrapped(boolean)
-meth public void setWrapperChildren(java.util.List<com.sun.tools.ws.processor.model.jaxb.JAXBProperty>)
-supr com.sun.tools.ws.processor.model.AbstractType
-hfds jaxbMapping,jaxbModel,unwrapped,wrapperChildren
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.JAXBTypeAndAnnotation
-cons public init(com.sun.codemodel.JType)
-cons public init(com.sun.tools.xjc.api.TypeAndAnnotation)
-cons public init(com.sun.tools.xjc.api.TypeAndAnnotation,com.sun.codemodel.JType)
-meth public com.sun.codemodel.JType getType()
-meth public com.sun.tools.xjc.api.TypeAndAnnotation getTypeAnn()
-meth public java.lang.String getName()
-meth public void annotate(com.sun.codemodel.JAnnotatable)
-meth public void setType(com.sun.codemodel.JType)
-meth public void setTypeAnn(com.sun.tools.xjc.api.TypeAndAnnotation)
-supr java.lang.Object
-hfds type,typeAnn
-
-CLSS public abstract interface com.sun.tools.ws.processor.model.jaxb.JAXBTypeVisitor
-meth public abstract void visit(com.sun.tools.ws.processor.model.jaxb.JAXBType) throws java.lang.Exception
-meth public abstract void visit(com.sun.tools.ws.processor.model.jaxb.RpcLitStructure) throws java.lang.Exception
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.RpcLitMember
-cons public init()
-cons public init(javax.xml.namespace.QName,java.lang.String)
-cons public init(javax.xml.namespace.QName,java.lang.String,javax.xml.namespace.QName)
-meth public java.lang.String getJavaTypeName()
-meth public javax.xml.namespace.QName getSchemaTypeName()
-meth public void setJavaTypeName(java.lang.String)
-meth public void setSchemaTypeName(javax.xml.namespace.QName)
-supr com.sun.tools.ws.processor.model.AbstractType
-hfds javaTypeName,schemaTypeName
-
-CLSS public com.sun.tools.ws.processor.model.jaxb.RpcLitStructure
-cons public init()
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.jaxb.JAXBModel)
-cons public init(javax.xml.namespace.QName,com.sun.tools.ws.processor.model.jaxb.JAXBModel,java.util.List<com.sun.tools.ws.processor.model.jaxb.RpcLitMember>)
-meth public boolean isLiteralType()
-meth public com.sun.tools.ws.processor.model.jaxb.JAXBModel getJaxbModel()
-meth public java.util.List<com.sun.tools.ws.processor.model.jaxb.RpcLitMember> getRpcLitMembers()
-meth public java.util.List<com.sun.tools.ws.processor.model.jaxb.RpcLitMember> setRpcLitMembers(java.util.List<com.sun.tools.ws.processor.model.jaxb.RpcLitMember>)
-meth public void accept(com.sun.tools.ws.processor.model.jaxb.JAXBTypeVisitor) throws java.lang.Exception
-meth public void addRpcLitMember(com.sun.tools.ws.processor.model.jaxb.RpcLitMember)
-meth public void setJaxbModel(com.sun.tools.ws.processor.model.jaxb.JAXBModel)
-supr com.sun.tools.ws.processor.model.AbstractType
-hfds jaxbModel,members
-
 CLSS public final com.sun.tools.ws.processor.modeler.JavaSimpleTypeCreator
 fld public final static com.sun.tools.ws.processor.model.java.JavaSimpleType BIG_INTEGER_JAVATYPE
 fld public final static com.sun.tools.ws.processor.model.java.JavaSimpleType BOOLEAN_JAVATYPE
@@ -934,231 +691,12 @@ hfds value
 
 CLSS public com.sun.tools.ws.processor.modeler.ModelerException
 cons public !varargs init(java.lang.String,java.lang.Object[])
-cons public init(com.sun.xml.ws.util.localization.Localizable)
+cons public init(com.sun.istack.localization.Localizable)
+cons public init(java.lang.String)
 cons public init(java.lang.Throwable)
 meth public java.lang.String getDefaultResourceBundleName()
 supr com.sun.tools.ws.processor.ProcessorException
 
-CLSS public com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext
-cons public init()
-innr public static SeiContext
-meth public boolean isModelCompleted()
-meth public com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext$SeiContext getSeiContext(javax.lang.model.element.Name)
-meth public com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext$SeiContext getSeiContext(javax.lang.model.element.TypeElement)
-meth public int getRound()
-meth public java.util.Collection<com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext$SeiContext> getSeiContexts()
-meth public static boolean isEncoded(com.sun.tools.ws.processor.model.Model)
-meth public void addSeiContext(javax.lang.model.element.Name,com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext$SeiContext)
-meth public void incrementRound()
-meth public void setModelCompleted(boolean)
-supr java.lang.Object
-hfds modelCompleted,round,seiContextMap
-
-CLSS public static com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext$SeiContext
- outer com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext
-cons public init(javax.lang.model.element.Name)
-meth public boolean getImplementsSei()
-meth public com.sun.tools.ws.processor.modeler.annotation.FaultInfo getExceptionBeanName(javax.lang.model.element.Name)
-meth public com.sun.tools.ws.processor.modeler.annotation.WrapperInfo getReqOperationWrapper(javax.lang.model.element.ExecutableElement)
-meth public com.sun.tools.ws.processor.modeler.annotation.WrapperInfo getResOperationWrapper(javax.lang.model.element.ExecutableElement)
-meth public java.lang.String getNamespaceUri()
-meth public java.lang.String methodToString(javax.lang.model.element.ExecutableElement)
-meth public javax.lang.model.element.Name getSeiImplName()
-meth public void addExceptionBeanEntry(javax.lang.model.element.Name,com.sun.tools.ws.processor.modeler.annotation.FaultInfo,com.sun.tools.ws.processor.modeler.annotation.ModelBuilder)
-meth public void clearExceptionMap()
-meth public void setImplementsSei(boolean)
-meth public void setNamespaceUri(java.lang.String)
-meth public void setReqWrapperOperation(javax.lang.model.element.ExecutableElement,com.sun.tools.ws.processor.modeler.annotation.WrapperInfo)
-meth public void setResWrapperOperation(javax.lang.model.element.ExecutableElement,com.sun.tools.ws.processor.modeler.annotation.WrapperInfo)
-meth public void setSeiImplName(javax.lang.model.element.Name)
-supr java.lang.Object
-hfds exceptionBeanMap,implementsSei,namespaceUri,reqOperationWrapperMap,resOperationWrapperMap,seiImplName,seiName
-
-CLSS public com.sun.tools.ws.processor.modeler.annotation.FaultInfo
-cons public init()
-cons public init(com.sun.tools.ws.processor.modeler.annotation.TypeMoniker,boolean)
-cons public init(java.lang.String)
-cons public init(java.lang.String,boolean)
-fld public boolean isWsdlException
-fld public com.sun.tools.ws.processor.modeler.annotation.TypeMoniker beanTypeMoniker
-fld public java.lang.String beanName
-fld public javax.xml.namespace.QName elementName
-meth public boolean isWsdlException()
-meth public com.sun.tools.ws.processor.modeler.annotation.TypeMoniker getBeanTypeMoniker()
-meth public java.lang.String getBeanName()
-meth public javax.xml.namespace.QName getElementName()
-meth public void setBeanName(java.lang.String)
-meth public void setBeanTypeMoniker(com.sun.tools.ws.processor.modeler.annotation.TypeMoniker)
-meth public void setElementName(javax.xml.namespace.QName)
-meth public void setIsWsdlException(boolean)
-supr java.lang.Object
-
-CLSS public com.sun.tools.ws.processor.modeler.annotation.MakeSafeTypeVisitor
-cons public init(javax.annotation.processing.ProcessingEnvironment)
-meth protected javax.lang.model.type.TypeMirror defaultAction(javax.lang.model.type.TypeMirror,javax.lang.model.util.Types)
-meth public javax.lang.model.type.TypeMirror visitDeclared(javax.lang.model.type.DeclaredType,javax.lang.model.util.Types)
-meth public javax.lang.model.type.TypeMirror visitNoType(javax.lang.model.type.NoType,javax.lang.model.util.Types)
-supr javax.lang.model.util.SimpleTypeVisitor6<javax.lang.model.type.TypeMirror,javax.lang.model.util.Types>
-hfds collectionType,mapType
-
-CLSS public abstract interface com.sun.tools.ws.processor.modeler.annotation.ModelBuilder
-meth public abstract boolean canOverWriteClass(java.lang.String)
-meth public abstract boolean checkAndSetProcessed(javax.lang.model.element.TypeElement)
-meth public abstract boolean isRemote(javax.lang.model.element.TypeElement)
-meth public abstract boolean isServiceException(javax.lang.model.type.TypeMirror)
-meth public abstract com.sun.tools.ws.wscompile.WsgenOptions getOptions()
-meth public abstract java.io.File getSourceDir()
-meth public abstract java.lang.String getOperationName(javax.lang.model.element.Name)
-meth public abstract javax.annotation.processing.ProcessingEnvironment getProcessingEnvironment()
-meth public abstract javax.lang.model.type.TypeMirror getHolderValueType(javax.lang.model.type.TypeMirror)
-meth public abstract void log(java.lang.String)
-meth public abstract void processError(java.lang.String)
-meth public abstract void processError(java.lang.String,javax.lang.model.element.Element)
-meth public abstract void processWarning(java.lang.String)
-
-CLSS public abstract interface com.sun.tools.ws.processor.modeler.annotation.TypeMoniker
-meth public abstract javax.lang.model.type.TypeMirror create(javax.annotation.processing.ProcessingEnvironment)
-
-CLSS public com.sun.tools.ws.processor.modeler.annotation.TypeMonikerFactory
-cons public init()
-meth public static com.sun.tools.ws.processor.modeler.annotation.TypeMoniker getTypeMoniker(java.lang.String)
-meth public static com.sun.tools.ws.processor.modeler.annotation.TypeMoniker getTypeMoniker(javax.lang.model.type.TypeMirror)
-supr java.lang.Object
-hcls ArrayTypeMoniker,DeclaredTypeMoniker,PrimitiveTypeMoniker,StringMoniker
-
-CLSS public com.sun.tools.ws.processor.modeler.annotation.WebServiceAp
- anno 0 javax.annotation.processing.SupportedAnnotationTypes(java.lang.String[] value=["javax.jws.HandlerChain", "javax.jws.Oneway", "javax.jws.WebMethod", "javax.jws.WebParam", "javax.jws.WebResult", "javax.jws.WebService", "javax.jws.soap.InitParam", "javax.jws.soap.SOAPBinding", "javax.jws.soap.SOAPMessageHandler", "javax.jws.soap.SOAPMessageHandlers", "javax.xml.ws.BindingType", "javax.xml.ws.RequestWrapper", "javax.xml.ws.ResponseWrapper", "javax.xml.ws.ServiceMode", "javax.xml.ws.W [...]
- anno 0 javax.annotation.processing.SupportedOptions(java.lang.String[] value=["doNotOverWrite", "ignoreNoWebServiceFoundWarning"])
- anno 0 javax.annotation.processing.SupportedSourceVersion(javax.lang.model.SourceVersion value=RELEASE_6)
-cons public init()
-cons public init(com.sun.tools.ws.wscompile.WsgenOptions,java.io.PrintStream)
-fld protected com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext context
-fld public final static java.lang.String DO_NOT_OVERWRITE = "doNotOverWrite"
-fld public final static java.lang.String IGNORE_NO_WEB_SERVICE_FOUND_WARNING = "ignoreNoWebServiceFoundWarning"
-intf com.sun.tools.ws.processor.modeler.annotation.ModelBuilder
-meth protected void report(java.lang.String)
-meth public boolean canOverWriteClass(java.lang.String)
-meth public boolean checkAndSetProcessed(javax.lang.model.element.TypeElement)
-meth public boolean isRemote(javax.lang.model.element.TypeElement)
-meth public boolean isServiceException(javax.lang.model.type.TypeMirror)
-meth public boolean process(java.util.Set<? extends javax.lang.model.element.TypeElement>,javax.annotation.processing.RoundEnvironment)
-meth public com.sun.tools.ws.wscompile.WsgenOptions getOptions()
-meth public java.io.File getSourceDir()
-meth public java.lang.String getOperationName(javax.lang.model.element.Name)
-meth public javax.annotation.processing.ProcessingEnvironment getProcessingEnvironment()
-meth public javax.lang.model.type.TypeMirror getHolderValueType(javax.lang.model.type.TypeMirror)
-meth public void init(javax.annotation.processing.ProcessingEnvironment)
-meth public void log(java.lang.String)
-meth public void processError(java.lang.String)
-meth public void processError(java.lang.String,javax.lang.model.element.Element)
-meth public void processWarning(java.lang.String)
-supr javax.annotation.processing.AbstractProcessor
-hfds defHolderElement,doNotOverWrite,exceptionElement,ignoreNoWebServiceFoundWarning,isCommandLineInvocation,options,out,processedTypeElements,remoteElement,remoteExceptionElement,runtimeExceptionElement,sourceDir
-
-CLSS public final !enum com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants
-fld public final static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants BEAN
-fld public final static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants FAULT_INFO
-fld public final static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants JAXWS_PACKAGE_PD
-fld public final static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants PD_JAXWS_PACKAGE_PD
-fld public final static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants RESPONSE
-fld public final static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants SERVICE
-meth public java.lang.String getValue()
-meth public static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants valueOf(java.lang.String)
-meth public static com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants[] values()
-supr java.lang.Enum<com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants>
-hfds value
-
-CLSS public abstract com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor
-cons public init(com.sun.tools.ws.processor.modeler.annotation.ModelBuilder,com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext)
-fld protected boolean endpointReferencesInterface
-fld protected boolean hasWebMethods
-fld protected boolean processingSei
-fld protected boolean pushedSoapBinding
-fld protected boolean wrapped
-fld protected com.sun.tools.ws.processor.model.Port port
-fld protected com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext context
-fld protected com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext$SeiContext seiContext
-fld protected com.sun.tools.ws.processor.modeler.annotation.ModelBuilder builder
-fld protected com.sun.tools.ws.wsdl.document.soap.SOAPStyle soapStyle
-fld protected java.lang.String portName
-fld protected java.lang.String serviceName
-fld protected java.lang.String typeNamespace
-fld protected java.lang.String wsdlNamespace
-fld protected java.util.Set<java.lang.String> processedMethods
-fld protected java.util.Stack<javax.jws.soap.SOAPBinding> soapBindingStack
-fld protected javax.jws.soap.SOAPBinding typeElementSoapBinding
-fld protected javax.lang.model.element.Name endpointInterfaceName
-fld protected javax.lang.model.element.Name packageName
-fld protected javax.lang.model.element.Name serviceImplName
-fld protected javax.lang.model.element.TypeElement typeElement
-innr protected static MySoapBinding
-meth protected abstract void processMethod(javax.lang.model.element.ExecutableElement,javax.jws.WebMethod)
-meth protected abstract void processWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected boolean classImplementsSei(javax.lang.model.element.TypeElement,javax.lang.model.element.TypeElement)
-meth protected boolean hasWebMethods(javax.lang.model.element.TypeElement)
-meth protected boolean isDocLitWrapped()
-meth protected boolean isEquivalentModes(javax.jws.WebParam$Mode,javax.jws.WebParam$Mode)
-meth protected boolean isHolder(javax.lang.model.element.VariableElement)
-meth protected boolean isLegalImplementation(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected boolean isLegalMethod(javax.lang.model.element.ExecutableElement,javax.lang.model.element.TypeElement)
-meth protected boolean isLegalParameter(javax.lang.model.element.VariableElement,javax.lang.model.element.ExecutableElement,javax.lang.model.element.TypeElement,int)
-meth protected boolean isLegalSei(javax.lang.model.element.TypeElement)
-meth protected boolean isLegalType(javax.lang.model.type.TypeMirror)
-meth protected boolean isValidOneWayMethod(javax.lang.model.element.ExecutableElement,javax.lang.model.element.TypeElement)
-meth protected boolean methodsAreLegal(javax.lang.model.element.TypeElement)
-meth protected boolean processedMethod(javax.lang.model.element.ExecutableElement)
-meth protected boolean pushSoapBinding(javax.jws.soap.SOAPBinding,javax.lang.model.element.Element,javax.lang.model.element.TypeElement)
-meth protected boolean sameMethod(javax.lang.model.element.ExecutableElement,javax.lang.model.element.ExecutableElement)
-meth protected boolean shouldProcessMethod(javax.lang.model.element.ExecutableElement,javax.jws.WebMethod)
-meth protected boolean shouldProcessWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected int getModeParameterCount(javax.lang.model.element.ExecutableElement,javax.jws.WebParam$Mode)
-meth protected java.lang.String getNamespace(javax.lang.model.element.PackageElement)
-meth protected javax.jws.soap.SOAPBinding popSoapBinding()
-meth protected javax.lang.model.element.VariableElement getOutParameter(javax.lang.model.element.ExecutableElement)
-meth protected void checkForInvalidImplAnnotation(javax.lang.model.element.Element,java.lang.Class)
-meth protected void checkForInvalidSeiAnnotation(javax.lang.model.element.TypeElement,java.lang.Class)
-meth protected void postProcessWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected void preProcessWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected void processMethods(javax.lang.model.element.TypeElement)
-meth protected void verifyImplAnnotations(javax.lang.model.element.TypeElement)
-meth protected void verifySeiAnnotations(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth public java.lang.Void visitExecutable(javax.lang.model.element.ExecutableElement,java.lang.Object)
-meth public java.lang.Void visitType(javax.lang.model.element.TypeElement,java.lang.Object)
-meth public static boolean sameStyle(javax.jws.soap.SOAPBinding$Style,com.sun.tools.ws.wsdl.document.soap.SOAPStyle)
-supr javax.lang.model.util.SimpleElementVisitor6<java.lang.Void,java.lang.Object>
-hfds NO_TYPE_VISITOR
-hcls NoTypeVisitor
-
-CLSS protected static com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor$MySoapBinding
- outer com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor
-cons protected init()
-intf javax.jws.soap.SOAPBinding
-meth public java.lang.Class<? extends java.lang.annotation.Annotation> annotationType()
-meth public javax.jws.soap.SOAPBinding$ParameterStyle parameterStyle()
-meth public javax.jws.soap.SOAPBinding$Style style()
-meth public javax.jws.soap.SOAPBinding$Use use()
-supr java.lang.Object
-
-CLSS public com.sun.tools.ws.processor.modeler.annotation.WebServiceWrapperGenerator
-cons public init(com.sun.tools.ws.processor.modeler.annotation.ModelBuilder,com.sun.tools.ws.processor.modeler.annotation.AnnotationProcessorContext)
-meth protected boolean isWSDLException(java.util.Collection<com.sun.tools.ws.processor.modeler.annotation.MemberInfo>,javax.lang.model.element.TypeElement)
-meth protected com.sun.codemodel.JDefinedClass getCMClass(java.lang.String,com.sun.codemodel.ClassType)
-meth protected void doPostProcessWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected void postProcessWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-meth protected void processMethod(javax.lang.model.element.ExecutableElement,javax.jws.WebMethod)
-meth protected void processWebService(javax.jws.WebService,javax.lang.model.element.TypeElement)
-supr com.sun.tools.ws.processor.modeler.annotation.WebServiceVisitor
-hfds FIELD_FACTORY,ap_generator,cm,makeSafeVisitor,processedExceptions,wrapperNames
-hcls ApWrapperBeanGenerator,FieldFactory
-
-CLSS public com.sun.tools.ws.processor.modeler.annotation.WrapperInfo
-cons public init()
-cons public init(java.lang.String)
-fld public java.lang.String wrapperName
-meth public java.lang.String getWrapperName()
-meth public void setWrapperName(java.lang.String)
-supr java.lang.Object
-
 CLSS public com.sun.tools.ws.processor.modeler.wsdl.ClassNameAllocatorImpl
 cons public init(com.sun.tools.ws.processor.util.ClassNameCollector)
 intf com.sun.tools.xjc.api.ClassNameAllocator
@@ -1229,6 +767,7 @@ meth protected void createJavaInterfaceForProviderPort(com.sun.tools.ws.processo
 meth protected void createJavaMethodForOperation(com.sun.tools.ws.processor.model.Port,com.sun.tools.ws.processor.model.Operation,com.sun.tools.ws.processor.model.java.JavaInterface)
 meth protected void handleLiteralSOAPFault(com.sun.tools.ws.processor.model.Response,java.util.Set)
 meth protected void handleLiteralSOAPHeaders(com.sun.tools.ws.processor.model.Request,com.sun.tools.ws.processor.model.Response,java.util.Iterator,java.util.Set,java.util.List<java.lang.String>,boolean)
+ anno 5 com.sun.istack.NotNull()
 meth protected void processService(com.sun.tools.ws.wsdl.document.Service,com.sun.tools.ws.processor.model.Model,com.sun.tools.ws.wsdl.document.WSDLDocument)
 meth public com.sun.tools.ws.processor.model.Model buildModel()
 supr com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase
@@ -1244,7 +783,6 @@ supr java.lang.Enum<com.sun.tools.ws.processor.modeler.wsdl.WSDLModeler$StyleAnd
 
 CLSS public abstract com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase
 cons public init(com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver,com.sun.tools.ws.wsdl.parser.MetadataFinder)
-fld protected boolean useWSIBasicProfile
 fld protected com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase$ProcessSOAPOperationInfo info
 fld protected com.sun.tools.ws.wsdl.document.WSDLDocument document
 fld protected com.sun.tools.ws.wsdl.parser.MetadataFinder forest
@@ -1259,8 +797,7 @@ fld protected java.util.Map<java.lang.String,com.sun.tools.ws.processor.model.ja
 fld protected java.util.Map<javax.xml.namespace.QName,com.sun.tools.ws.processor.model.Port> _bindingNameToPortMap
 fld public final static java.lang.String MESSAGE_HAS_MIME_MULTIPART_RELATED_BINDING = "com.sun.xml.ws.processor.modeler.wsdl.mimeMultipartRelatedBinding"
 fld public final static java.lang.String WSDL_RESULT_PARAMETER = "com.sun.xml.ws.processor.modeler.wsdl.resultParameter"
-innr public ProcessSOAPOperationInfo
-innr public static WSDLExceptionInfo
+innr public static ProcessSOAPOperationInfo
 intf com.sun.tools.ws.processor.modeler.Modeler
 meth protected boolean isConflictingClassName(java.lang.String)
 meth protected boolean isConflictingExceptionClassName(java.lang.String)
@@ -1303,9 +840,9 @@ meth protected void warning(com.sun.tools.ws.wsdl.framework.Entity,java.lang.Str
 supr java.lang.Object
 hfds _conflictingClassNames,numPasses,reqResNames
 
-CLSS public com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase$ProcessSOAPOperationInfo
+CLSS public static com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase$ProcessSOAPOperationInfo
  outer com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase
-cons public init(com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase,com.sun.tools.ws.processor.model.Port,com.sun.tools.ws.wsdl.document.Port,com.sun.tools.ws.wsdl.document.Operation,com.sun.tools.ws.wsdl.document.BindingOperation,com.sun.tools.ws.wsdl.document.soap.SOAPBinding,com.sun.tools.ws.wsdl.document.WSDLDocument,boolean,java.util.Map)
+cons public init(com.sun.tools.ws.processor.model.Port,com.sun.tools.ws.wsdl.document.Port,com.sun.tools.ws.wsdl.document.Operation,com.sun.tools.ws.wsdl.document.BindingOperation,com.sun.tools.ws.wsdl.document.soap.SOAPBinding,com.sun.tools.ws.wsdl.document.WSDLDocument,boolean,java.util.Map)
 fld public boolean hasOverloadedOperations
 fld public com.sun.tools.ws.processor.model.Operation operation
 fld public com.sun.tools.ws.processor.model.Port modelPort
@@ -1314,102 +851,9 @@ fld public com.sun.tools.ws.wsdl.document.Operation portTypeOperation
 fld public com.sun.tools.ws.wsdl.document.Port port
 fld public com.sun.tools.ws.wsdl.document.WSDLDocument document
 fld public com.sun.tools.ws.wsdl.document.soap.SOAPBinding soapBinding
-fld public java.lang.String uniqueOperationName
 fld public java.util.Map headers
 supr java.lang.Object
 
-CLSS public static com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase$WSDLExceptionInfo
- outer com.sun.tools.ws.processor.modeler.wsdl.WSDLModelerBase
-cons public init()
-fld public java.lang.String exceptionType
-fld public java.lang.String wsdlMessagePartName
-fld public java.util.HashMap constructorOrder
-fld public javax.xml.namespace.QName wsdlMessage
-supr java.lang.Object
-
-CLSS public com.sun.tools.ws.processor.util.ClassNameCollector
-cons public init()
-intf com.sun.tools.ws.processor.model.jaxb.JAXBTypeVisitor
-meth protected boolean shouldVisit(com.sun.tools.ws.processor.model.Port)
-meth protected void postVisit(com.sun.tools.ws.processor.model.Model) throws java.lang.Exception
-meth protected void postVisit(com.sun.tools.ws.processor.model.Port) throws java.lang.Exception
-meth protected void preVisit(com.sun.tools.ws.processor.model.Fault) throws java.lang.Exception
-meth protected void preVisit(com.sun.tools.ws.processor.model.Port) throws java.lang.Exception
-meth protected void preVisit(com.sun.tools.ws.processor.model.Service) throws java.lang.Exception
-meth protected void processPort11x(com.sun.tools.ws.processor.model.Port)
-meth protected void visit(com.sun.tools.ws.processor.model.Parameter) throws java.lang.Exception
-meth protected void visitBlock(com.sun.tools.ws.processor.model.Block) throws java.lang.Exception
-meth protected void visitBodyBlock(com.sun.tools.ws.processor.model.Block) throws java.lang.Exception
-meth protected void visitFaultBlock(com.sun.tools.ws.processor.model.Block) throws java.lang.Exception
-meth protected void visitHeaderBlock(com.sun.tools.ws.processor.model.Block) throws java.lang.Exception
-meth public java.util.Set getConflictingClassNames()
-meth public java.util.Set<java.lang.String> getExceptionClassNames()
-meth public java.util.Set<java.lang.String> getJaxbGeneratedClassNames()
-meth public java.util.Set<java.lang.String> getSeiClassNames()
-meth public void process(com.sun.tools.ws.processor.model.Model)
-meth public void visit(com.sun.tools.ws.processor.model.jaxb.JAXBType) throws java.lang.Exception
-meth public void visit(com.sun.tools.ws.processor.model.jaxb.RpcLitStructure) throws java.lang.Exception
-supr com.sun.tools.ws.processor.model.ExtendedModelVisitor
-hfds _allClassNames,_conflictingClassNames,_exceptionClassNames,_exceptions,_jaxbGeneratedClassNames,_portTypeNames,_seiClassNames,_wsdlBindingNames,doneVisitingJAXBModel
-
-CLSS public com.sun.tools.ws.processor.util.DirectoryUtil
-cons public init()
-meth public static java.io.File getOutputDirectoryFor(java.lang.String,java.io.File)
-meth public static java.lang.String getRelativePathfromCommonBase(java.io.File,java.io.File) throws java.io.IOException
-supr java.lang.Object
-
-CLSS public com.sun.tools.ws.processor.util.IndentingWriter
-cons public init(java.io.Writer)
-cons public init(java.io.Writer,int)
-meth protected boolean canEncode(java.lang.String)
-meth protected void checkWrite() throws java.io.IOException
-meth protected void indentIn()
-meth protected void indentOut()
-meth public void newLine() throws java.io.IOException
-meth public void p(java.lang.Object) throws java.io.IOException
-meth public void p(java.lang.String) throws java.io.IOException
-meth public void p(java.lang.String,java.lang.String) throws java.io.IOException
-meth public void p(java.lang.String,java.lang.String,java.lang.String) throws java.io.IOException
-meth public void p(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws java.io.IOException
-meth public void p(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws java.io.IOException
-meth public void pF(java.lang.String,java.lang.Object[]) throws java.io.IOException
-meth public void pFln(java.lang.String,java.lang.Object[]) throws java.io.IOException
-meth public void pI()
-meth public void pI(int)
-meth public void pM(java.lang.String) throws java.io.IOException
-meth public void pMO(java.lang.String) throws java.io.IOException
-meth public void pMOln(java.lang.String) throws java.io.IOException
-meth public void pMln(java.lang.String) throws java.io.IOException
-meth public void pMlnI(java.lang.String) throws java.io.IOException
-meth public void pO()
-meth public void pO(int)
-meth public void pO(java.lang.Object) throws java.io.IOException
-meth public void pO(java.lang.String) throws java.io.IOException
-meth public void pOln(java.lang.Object) throws java.io.IOException
-meth public void pOln(java.lang.String) throws java.io.IOException
-meth public void pOlnI(java.lang.Object) throws java.io.IOException
-meth public void pOlnI(java.lang.String) throws java.io.IOException
-meth public void pln() throws java.io.IOException
-meth public void pln(java.lang.Object) throws java.io.IOException
-meth public void pln(java.lang.String) throws java.io.IOException
-meth public void pln(java.lang.String,java.lang.String) throws java.io.IOException
-meth public void pln(java.lang.String,java.lang.String,java.lang.String) throws java.io.IOException
-meth public void pln(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws java.io.IOException
-meth public void pln(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws java.io.IOException
-meth public void plnI(java.lang.Object) throws java.io.IOException
-meth public void plnI(java.lang.String) throws java.io.IOException
-meth public void write(char[],int,int) throws java.io.IOException
-meth public void write(int) throws java.io.IOException
-meth public void write(java.lang.String,int,int) throws java.io.IOException
-supr java.io.BufferedWriter
-hfds beginningOfLine,currentIndent,indentStep
-
-CLSS public com.sun.tools.ws.util.xml.XmlUtil
-cons public init()
-meth public static boolean matchesTagNS(org.w3c.dom.Element,java.lang.String,java.lang.String)
-meth public static boolean matchesTagNS(org.w3c.dom.Element,javax.xml.namespace.QName)
-supr com.sun.xml.ws.util.xml.XmlUtil
-
 CLSS public com.sun.tools.ws.wscompile.AbortException
 cons public init()
 supr java.lang.RuntimeException
@@ -1424,7 +868,7 @@ meth public boolean matchingHost(java.net.URL)
 meth public java.lang.String getPassword()
 meth public java.lang.String getUser()
 supr java.lang.Object
-hfds password,url,user
+hfds password,urlPattern,user
 
 CLSS public com.sun.tools.ws.wscompile.BadCommandLineException
 cons public init()
@@ -1436,15 +880,6 @@ meth public void initOptions(com.sun.tools.ws.wscompile.Options)
 supr java.lang.Exception
 hfds options
 
-CLSS public com.sun.tools.ws.wscompile.DefaultAuthenticator
-cons public init(com.sun.tools.ws.wscompile.ErrorReceiver,java.io.File) throws com.sun.tools.ws.wscompile.BadCommandLineException
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-fld public final static java.lang.String defaultAuthfile
-meth protected java.net.PasswordAuthentication getPasswordAuthentication()
-supr java.net.Authenticator
-hfds authFile,authInfo,errReceiver,giveError,proxyPasswd,proxyUser
-
 CLSS public abstract com.sun.tools.ws.wscompile.ErrorReceiver
 cons public init()
 intf com.sun.tools.xjc.api.ErrorListener
@@ -1480,16 +915,18 @@ supr com.sun.tools.ws.wscompile.ErrorReceiver
 hfds core,hadError
 
 CLSS public com.sun.tools.ws.wscompile.FilerCodeWriter
-cons public init(java.io.File,com.sun.tools.ws.wscompile.Options) throws java.io.IOException
+cons public init(com.sun.tools.ws.wscompile.Options) throws java.io.IOException
+meth public java.io.OutputStream openBinary(com.sun.codemodel.JPackage,java.lang.String) throws java.io.IOException
 meth public java.io.Writer openSource(com.sun.codemodel.JPackage,java.lang.String) throws java.io.IOException
 meth public void close() throws java.io.IOException
-supr com.sun.tools.ws.wscompile.WSCodeWriter
-hfds filer,w
+supr com.sun.codemodel.CodeWriter
+hfds options,w
 
 CLSS public com.sun.tools.ws.wscompile.Options
 cons public init()
 fld public boolean debug
 fld public boolean debugMode
+fld public boolean disableXmlSecurity
 fld public boolean keep
 fld public boolean nocompile
 fld public boolean quiet
@@ -1500,21 +937,25 @@ fld public final static int STRICT = 1
 fld public int compatibilityMode
 fld public java.io.File destDir
 fld public java.io.File sourceDir
-fld public java.io.File targetDir
 fld public java.lang.String classpath
 fld public java.lang.String encoding
+fld public java.util.List<java.lang.String> javacOptions
 fld public javax.annotation.processing.Filer filer
 innr public final static !enum Target
 innr public final static WeAreDone
 meth protected int parseArguments(java.lang.String[],int) throws com.sun.tools.ws.wscompile.BadCommandLineException
 meth protected void addFile(java.lang.String) throws com.sun.tools.ws.wscompile.BadCommandLineException
+meth protected void disableXmlSecurity()
 meth public boolean isExtensionMode()
 meth public java.lang.ClassLoader getClassLoader()
 meth public java.lang.Iterable<java.io.File> getGeneratedFiles()
 meth public java.lang.String requireArgument(java.lang.String,java.lang.String[],int) throws com.sun.tools.ws.wscompile.BadCommandLineException
+meth public java.util.List<java.lang.String> getJavacOptions(java.util.List<java.lang.String>,com.sun.tools.ws.wscompile.WsimportListener)
 meth public static java.net.URL fileToURL(java.io.File)
 meth public static java.net.URL[] pathToURLs(java.lang.String)
 meth public void addGeneratedFile(java.io.File)
+ anno 0 java.lang.Deprecated()
+meth public void addGeneratedFile(javax.tools.FileObject)
 meth public void deleteGeneratedFiles()
 meth public void parseArguments(java.lang.String[]) throws com.sun.tools.ws.wscompile.BadCommandLineException
 meth public void removeGeneratedFiles()
@@ -1561,12 +1002,14 @@ cons public init()
 fld public boolean doNotOverWrite
 fld public boolean genWsdl
 fld public boolean inlineSchemas
+fld public boolean nosource
 fld public boolean protocolSet
 fld public final static java.lang.String X_SOAP12 = "Xsoap1.2"
 fld public java.io.File nonclassDestDir
 fld public java.io.File wsgenReport
 fld public java.lang.Class endpoint
 fld public java.lang.String protocol
+fld public java.util.List<java.lang.String> externalMetadataFiles
 fld public java.util.Map<java.lang.String,java.lang.String> nonstdProtocols
 fld public java.util.Set<java.lang.String> protocols
 fld public javax.xml.namespace.QName portName
@@ -1575,16 +1018,16 @@ meth protected int parseArguments(java.lang.String[],int) throws com.sun.tools.w
 meth protected void addFile(java.lang.String)
 meth public void validate() throws com.sun.tools.ws.wscompile.BadCommandLineException
 supr com.sun.tools.ws.wscompile.Options
-hfds HTTP,PORTNAME_OPTION,SERVICENAME_OPTION,SOAP11,endpoints,isImplClass,noWebServiceEndpoint
+hfds HTTP,NOSOURCE_OPTION,PORTNAME_OPTION,SERVICENAME_OPTION,SOAP11,endpoints,isImplClass
 
 CLSS public com.sun.tools.ws.wscompile.WsgenTool
 cons public init(java.io.OutputStream)
 cons public init(java.io.OutputStream,com.sun.xml.ws.api.server.Container)
-meth protected void usage(com.sun.tools.ws.wscompile.WsgenOptions)
+meth protected void usage(com.sun.tools.ws.wscompile.Options)
 meth public boolean buildModel(java.lang.String,com.sun.tools.ws.wscompile.WsgenTool$Listener) throws com.sun.tools.ws.wscompile.BadCommandLineException
 meth public boolean run(java.lang.String[])
 supr java.lang.Object
-hfds container,options,out,round
+hfds container,options,out
 hcls Listener,ReportOutput
 
 CLSS public com.sun.tools.ws.wscompile.WsimportListener
@@ -1603,28 +1046,33 @@ supr java.lang.Object
 CLSS public com.sun.tools.ws.wscompile.WsimportOptions
 cons public init()
 fld public boolean additionalHeaders
+fld public boolean disableAuthenticator
 fld public boolean disableSSLHostnameVerification
 fld public boolean isGenerateJWS
 fld public boolean noAddressingBbinding
 fld public boolean useBaseResourceAndURLToLoadWSDL
 fld public final java.util.List<com.sun.tools.ws.wscompile.Plugin> activePlugins
+fld public final static java.lang.String defaultAuthfile
 fld public java.io.File authFile
 fld public java.io.File implDestDir
 fld public java.lang.String clientjar
 fld public java.lang.String defaultPackage
 fld public java.lang.String implPortName
 fld public java.lang.String implServiceName
+fld public java.lang.String proxyAuth
 fld public java.lang.String wsdlLocation
 fld public java.util.HashMap<java.lang.String,java.lang.String> extensionOptions
 fld public java.util.List<java.lang.String> cmdlineJars
 fld public org.xml.sax.EntityResolver entityResolver
 meth protected void addFile(java.lang.String) throws com.sun.tools.ws.wscompile.BadCommandLineException
+meth protected void disableXmlSecurity()
 meth public com.sun.codemodel.JCodeModel getCodeModel()
 meth public com.sun.tools.xjc.api.SchemaCompiler getSchemaCompiler()
 meth public final void parseArguments(java.lang.String[]) throws com.sun.tools.ws.wscompile.BadCommandLineException
 meth public final void parseBindings(com.sun.tools.ws.wscompile.ErrorReceiver)
 meth public int parseArguments(java.lang.String[],int) throws com.sun.tools.ws.wscompile.BadCommandLineException
 meth public java.lang.String getExtensionOption(java.lang.String)
+meth public java.lang.String getModuleName()
 meth public java.util.List<com.sun.tools.ws.wscompile.Plugin> getAllPlugins()
 meth public org.w3c.dom.Element getHandlerChainConfiguration()
 meth public org.xml.sax.InputSource[] getSchemaBindings()
@@ -1643,7 +1091,7 @@ meth public void addWSDLBindFile(org.xml.sax.InputSource)
 meth public void setCodeModel(com.sun.codemodel.JCodeModel)
 meth public void validate() throws com.sun.tools.ws.wscompile.BadCommandLineException
 supr com.sun.tools.ws.wscompile.Options
-hfds allPlugins,bindingFiles,codeModel,handlerConfigs,jaxbCustomBindings,jaxwsCustomBindings,schemaCompiler,schemas,wsdls
+hfds allPlugins,bindingFiles,codeModel,handlerConfigs,javaModule,jaxbCustomBindings,jaxwsCustomBindings,proxyHost,proxyPort,schemaCompiler,schemas,wsdls
 hcls ByteStream,RereadInputSource,RereadInputStream
 
 CLSS public com.sun.tools.ws.wscompile.WsimportTool
@@ -1661,7 +1109,7 @@ meth protected void usage(com.sun.tools.ws.wscompile.Options)
 meth public boolean run(java.lang.String[])
 meth public void setEntityResolver(org.xml.sax.EntityResolver)
 supr java.lang.Object
-hfds WSIMPORT,container,out
+hfds JAXWS_MODULE,WSIMPORT,container,out
 
 CLSS protected com.sun.tools.ws.wscompile.WsimportTool$Listener
  outer com.sun.tools.ws.wscompile.WsimportTool
@@ -2263,7 +1711,7 @@ meth public org.w3c.dom.Element refineSchemaTarget(org.w3c.dom.Element)
 meth public org.w3c.dom.Element refineWSDLTarget(org.w3c.dom.Element)
 meth public void transform()
 supr java.lang.Object
-hfds errorReceiver,forest,options,xpath,xpf
+hfds errorReceiver,forest,xpath,xpf
 
 CLSS public com.sun.tools.ws.wsdl.parser.JAXWSBindingExtensionHandler
 cons public init(java.util.Map<java.lang.String,com.sun.tools.ws.wsdl.parser.AbstractExtensionHandler>)
@@ -2289,12 +1737,15 @@ meth public java.lang.String getNamespaceURI()
 supr com.sun.tools.ws.wsdl.parser.AbstractExtensionHandler
 
 CLSS public com.sun.tools.ws.wsdl.parser.MemberSubmissionAddressingExtensionHandler
-cons public init(java.util.Map<java.lang.String,com.sun.tools.ws.wsdl.parser.AbstractExtensionHandler>)
-cons public init(java.util.Map<java.lang.String,com.sun.tools.ws.wsdl.parser.AbstractExtensionHandler>,com.sun.tools.ws.wscompile.ErrorReceiver)
+cons public init(java.util.Map<java.lang.String,com.sun.tools.ws.wsdl.parser.AbstractExtensionHandler>,com.sun.tools.ws.wscompile.ErrorReceiver,boolean)
 meth protected javax.xml.namespace.QName getWSDLExtensionQName()
+meth public boolean handleFaultExtension(com.sun.tools.ws.api.wsdl.TWSDLParserContext,com.sun.tools.ws.api.wsdl.TWSDLExtensible,org.w3c.dom.Element)
+meth public boolean handleInputExtension(com.sun.tools.ws.api.wsdl.TWSDLParserContext,com.sun.tools.ws.api.wsdl.TWSDLExtensible,org.w3c.dom.Element)
+meth public boolean handleOutputExtension(com.sun.tools.ws.api.wsdl.TWSDLParserContext,com.sun.tools.ws.api.wsdl.TWSDLExtensible,org.w3c.dom.Element)
 meth public boolean handlePortExtension(com.sun.tools.ws.api.wsdl.TWSDLParserContext,com.sun.tools.ws.api.wsdl.TWSDLExtensible,org.w3c.dom.Element)
 meth public java.lang.String getNamespaceURI()
 supr com.sun.tools.ws.wsdl.parser.W3CAddressingExtensionHandler
+hfds errReceiver,extensionModeOn
 
 CLSS public final com.sun.tools.ws.wsdl.parser.MetadataFinder
 cons public init(com.sun.tools.ws.wsdl.parser.InternalizationLogic,com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
@@ -2313,9 +1764,10 @@ CLSS public static com.sun.tools.ws.wsdl.parser.MetadataFinder$WSEntityResolver
  outer com.sun.tools.ws.wsdl.parser.MetadataFinder
 cons public init(com.sun.tools.ws.wscompile.WsimportOptions,com.sun.tools.ws.wscompile.ErrorReceiver)
 intf org.xml.sax.EntityResolver
+meth protected void finalize() throws java.lang.Throwable
 meth public org.xml.sax.InputSource resolveEntity(java.lang.String,java.lang.String) throws java.io.IOException,org.xml.sax.SAXException
 supr java.lang.Object
-hfds errorReceiver,options,parentResolver
+hfds c,doReset,errorReceiver,options
 
 CLSS public com.sun.tools.ws.wsdl.parser.NamespaceContextImpl
 cons public init(org.w3c.dom.Element)
@@ -2478,2003 +1930,130 @@ meth public abstract void fatalError(org.xml.sax.SAXParseException)
 meth public abstract void info(org.xml.sax.SAXParseException)
 meth public abstract void warning(org.xml.sax.SAXParseException)
 
-CLSS public com.sun.xml.messaging.saaj.SOAPExceptionImpl
-cons public init()
-cons public init(java.lang.String)
-cons public init(java.lang.String,java.lang.Throwable)
-cons public init(java.lang.Throwable)
-meth public java.lang.String getMessage()
-meth public java.lang.Throwable getCause()
-meth public java.lang.Throwable initCause(java.lang.Throwable)
-meth public void printStackTrace()
-meth public void printStackTrace(java.io.PrintStream)
-meth public void printStackTrace(java.io.PrintWriter)
-supr javax.xml.soap.SOAPException
-hfds cause
-
-CLSS public com.sun.xml.messaging.saaj.soap.AttachmentPartImpl
-cons public init()
-cons public init(org.jvnet.mimepull.MIMEPart)
-fld protected final static java.util.logging.Logger log
-meth public boolean equals(java.lang.Object)
-meth public byte[] getRawContentBytes() throws javax.xml.soap.SOAPException
-meth public int getSize() throws javax.xml.soap.SOAPException
-meth public java.io.InputStream getBase64Content() throws javax.xml.soap.SOAPException
-meth public java.io.InputStream getRawContent() throws javax.xml.soap.SOAPException
-meth public java.lang.Object getContent() throws javax.xml.soap.SOAPException
-meth public java.lang.String[] getMimeHeader(java.lang.String)
-meth public java.util.Iterator getAllMimeHeaders()
-meth public java.util.Iterator getMatchingMimeHeaders(java.lang.String[])
-meth public java.util.Iterator getNonMatchingMimeHeaders(java.lang.String[])
-meth public javax.activation.DataHandler getDataHandler() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.MimeHeaders getMimeHeaders()
-meth public static void copyMimeHeaders(com.sun.xml.messaging.saaj.packaging.mime.internet.MimeBodyPart,com.sun.xml.messaging.saaj.soap.AttachmentPartImpl) throws javax.xml.soap.SOAPException
-meth public static void copyMimeHeaders(javax.xml.soap.MimeHeaders,com.sun.xml.messaging.saaj.packaging.mime.internet.MimeBodyPart) throws javax.xml.soap.SOAPException
-meth public void addMimeHeader(java.lang.String,java.lang.String)
-meth public void clearContent()
-meth public void removeAllMimeHeaders()
-meth public void removeMimeHeader(java.lang.String)
-meth public void setBase64Content(java.io.InputStream,java.lang.String) throws javax.xml.soap.SOAPException
-meth public void setContent(java.lang.Object,java.lang.String)
-meth public void setDataHandler(javax.activation.DataHandler)
-meth public void setMimeHeader(java.lang.String,java.lang.String)
-meth public void setRawContent(java.io.InputStream,java.lang.String) throws javax.xml.soap.SOAPException
-meth public void setRawContentBytes(byte[],int,int,java.lang.String) throws javax.xml.soap.SOAPException
-supr javax.xml.soap.AttachmentPart
-hfds dataHandler,headers,mimePart,rawContent
-
-CLSS public abstract interface com.sun.xml.messaging.saaj.soap.Envelope
-intf javax.xml.soap.SOAPEnvelope
-meth public abstract javax.xml.transform.Source getContent()
-meth public abstract void output(java.io.OutputStream) throws java.io.IOException
-meth public abstract void output(java.io.OutputStream,boolean) throws java.io.IOException
-
-CLSS public com.sun.xml.messaging.saaj.soap.EnvelopeFactory
-cons public init()
-fld protected final static java.util.logging.Logger log
-meth public static com.sun.xml.messaging.saaj.soap.Envelope createEnvelope(javax.xml.transform.Source,com.sun.xml.messaging.saaj.soap.SOAPPartImpl) throws javax.xml.soap.SOAPException
+CLSS public com.sun.xml.ws.util.ASCIIUtility
+meth public static int parseInt(byte[],int,int,int)
+meth public static java.lang.String toString(byte[],int,int)
+meth public static void copyStream(java.io.InputStream,java.io.OutputStream) throws java.io.IOException
 supr java.lang.Object
-hfds parserPool
 
-CLSS public com.sun.xml.messaging.saaj.soap.FastInfosetDataContentHandler
+CLSS public com.sun.xml.ws.util.AuthUtil
 cons public init()
-fld public final java.lang.String STR_SRC = "org.jvnet.fastinfoset.FastInfosetSource"
-intf javax.activation.DataContentHandler
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource) throws java.io.IOException
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource) throws java.io.IOException
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
+meth public static void setAuthenticator(java.net.Authenticator,java.net.HttpURLConnection)
 supr java.lang.Object
 
-CLSS public com.sun.xml.messaging.saaj.soap.GifDataContentHandler
-cons public init()
-intf javax.activation.DataContentHandler
-meth protected javax.activation.ActivationDataFlavor getDF()
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource) throws java.io.IOException
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource) throws java.io.IOException
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
-supr java.awt.Component
-hfds myDF
-
-CLSS public com.sun.xml.messaging.saaj.soap.ImageDataContentHandler
-cons public init()
-fld protected final static java.util.logging.Logger log
-intf javax.activation.DataContentHandler
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource) throws java.io.IOException
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource) throws java.io.IOException
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
-supr java.awt.Component
-hfds flavor
-
-CLSS public com.sun.xml.messaging.saaj.soap.JpegDataContentHandler
-cons public init()
-fld public final java.lang.String STR_SRC = "java.awt.Image"
-intf javax.activation.DataContentHandler
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource)
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource)
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
-supr java.awt.Component
-
-CLSS public com.sun.xml.messaging.saaj.soap.MessageFactoryImpl
+CLSS public com.sun.xml.ws.util.ByteArrayBuffer
 cons public init()
-fld protected boolean lazyAttachments
-fld protected final static java.util.logging.Logger log
-fld protected java.io.OutputStream listener
-meth protected final static java.lang.String getContentType(javax.xml.soap.MimeHeaders)
-meth public java.io.OutputStream listen(java.io.OutputStream)
-meth public javax.xml.soap.SOAPMessage createMessage() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPMessage createMessage(boolean,boolean) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPMessage createMessage(javax.xml.soap.MimeHeaders,java.io.InputStream) throws java.io.IOException,javax.xml.soap.SOAPException
-meth public void setLazyAttachmentOptimization(boolean)
-supr javax.xml.soap.MessageFactory
-
-CLSS public abstract com.sun.xml.messaging.saaj.soap.MessageImpl
-cons protected init()
-cons protected init(boolean,boolean)
-cons protected init(javax.xml.soap.MimeHeaders,com.sun.xml.messaging.saaj.packaging.mime.internet.ContentType,int,java.io.InputStream) throws com.sun.xml.messaging.saaj.SOAPExceptionImpl
-cons protected init(javax.xml.soap.MimeHeaders,java.io.InputStream) throws com.sun.xml.messaging.saaj.SOAPExceptionImpl
-cons protected init(javax.xml.soap.SOAPMessage)
-fld protected boolean acceptFastInfoset
-fld protected boolean attachmentsInitialized
-fld protected boolean isFastInfoset
-fld protected boolean saved
-fld protected byte[] messageBytes
-fld protected com.sun.xml.messaging.saaj.packaging.mime.internet.ContentType contentType
-fld protected com.sun.xml.messaging.saaj.packaging.mime.internet.MimeMultipart mmp
-fld protected com.sun.xml.messaging.saaj.packaging.mime.internet.MimeMultipart multiPart
-fld protected com.sun.xml.messaging.saaj.soap.SOAPPartImpl soapPartImpl
-fld protected com.sun.xml.messaging.saaj.util.FinalArrayList attachments
-fld protected final static int FI_ENCODED_FLAG = 16
-fld protected final static int MIME_MULTIPART_FLAG = 2
-fld protected final static int MIME_MULTIPART_XOP_SOAP1_1_FLAG = 6
-fld protected final static int MIME_MULTIPART_XOP_SOAP1_2_FLAG = 10
-fld protected final static int PLAIN_XML_FLAG = 1
-fld protected final static int SOAP1_1_FLAG = 4
-fld protected final static int SOAP1_2_FLAG = 8
-fld protected final static int XOP_FLAG = 13
-fld protected final static java.util.logging.Logger log
-fld protected int messageByteCount
-fld protected java.util.HashMap properties
-fld protected javax.xml.soap.MimeHeaders headers
-fld public final static java.lang.String CONTENT_ID = "Content-ID"
-fld public final static java.lang.String CONTENT_LOCATION = "Content-Location"
-intf javax.xml.soap.SOAPConstants
-meth protected abstract boolean isCorrectSoapVersion(int)
-meth protected abstract java.lang.String getExpectedAcceptHeader()
-meth protected abstract java.lang.String getExpectedContentType()
-meth protected static boolean isSoap1_1Content(int)
-meth protected static boolean isSoap1_2Content(int)
-meth public abstract javax.xml.soap.SOAPPart getSOAPPart()
-meth public boolean acceptFastInfoset()
-meth public boolean isFastInfoset()
-meth public boolean saveRequired()
-meth public int countAttachments()
-meth public java.lang.Object getProperty(java.lang.String)
-meth public java.lang.String getAction()
-meth public java.lang.String getBaseType()
-meth public java.lang.String getCharset()
-meth public java.lang.String getContentDescription()
+cons public init(byte[])
+cons public init(byte[],int)
+cons public init(int)
+fld protected byte[] buf
+meth public final byte[] getRawData()
+meth public final byte[] toByteArray()
+meth public final int size()
+meth public final java.io.InputStream newInputStream()
+meth public final java.io.InputStream newInputStream(int,int)
+meth public final void reset()
+meth public final void write(byte[],int,int)
+meth public final void write(int)
+meth public final void write(java.io.InputStream) throws java.io.IOException
+meth public final void writeTo(java.io.OutputStream) throws java.io.IOException
+meth public java.lang.String toString()
+meth public void close() throws java.io.IOException
+supr java.io.OutputStream
+hfds CHUNK_SIZE,count
+
+CLSS public final com.sun.xml.ws.util.ByteArrayDataSource
+cons public init(byte[],int,int,java.lang.String)
+cons public init(byte[],int,java.lang.String)
+cons public init(byte[],java.lang.String)
+intf javax.activation.DataSource
+meth public java.io.InputStream getInputStream()
+meth public java.io.OutputStream getOutputStream()
 meth public java.lang.String getContentType()
-meth public java.util.Iterator getAttachments()
-meth public java.util.Iterator getAttachments(javax.xml.soap.MimeHeaders)
-meth public javax.xml.soap.AttachmentPart createAttachmentPart()
-meth public javax.xml.soap.AttachmentPart getAttachment(javax.xml.soap.SOAPElement) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.MimeHeaders getMimeHeaders()
-meth public javax.xml.soap.SOAPBody getSOAPBody() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPHeader getSOAPHeader() throws javax.xml.soap.SOAPException
-meth public void addAttachmentPart(javax.xml.soap.AttachmentPart)
-meth public void removeAllAttachments()
-meth public void removeAttachments(javax.xml.soap.MimeHeaders)
-meth public void saveChanges() throws javax.xml.soap.SOAPException
-meth public void setAction(java.lang.String)
-meth public void setBaseType(java.lang.String)
-meth public void setCharset(java.lang.String)
-meth public void setContentDescription(java.lang.String)
-meth public void setContentType(java.lang.String)
-meth public void setIsFastInfoset(boolean)
-meth public void setLazyAttachments(boolean)
-meth public void setProperty(java.lang.String,java.lang.Object)
-meth public void writeTo(java.io.OutputStream) throws java.io.IOException,javax.xml.soap.SOAPException
-supr javax.xml.soap.SOAPMessage
-hfds inputStreamAfterSaveChanges,lazyAttachments,nullIter,optimizeAttachmentProcessing,switchOffBM,switchOffLazyAttachment,useMimePull
-hcls MimeMatchingIterator
+meth public java.lang.String getName()
+supr java.lang.Object
+hfds buf,contentType,len,start
 
-CLSS public com.sun.xml.messaging.saaj.soap.MultipartDataContentHandler
-cons public init()
-intf javax.activation.DataContentHandler
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource)
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource)
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
+CLSS public com.sun.xml.ws.util.CompletedFuture<%0 extends java.lang.Object>
+cons public init({com.sun.xml.ws.util.CompletedFuture%0},java.lang.Throwable)
+intf java.util.concurrent.Future<{com.sun.xml.ws.util.CompletedFuture%0}>
+meth public boolean cancel(boolean)
+meth public boolean isCancelled()
+meth public boolean isDone()
+meth public {com.sun.xml.ws.util.CompletedFuture%0} get() throws java.util.concurrent.ExecutionException
+meth public {com.sun.xml.ws.util.CompletedFuture%0} get(long,java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException
 supr java.lang.Object
-hfds myDF
+hfds re,v
 
-CLSS public com.sun.xml.messaging.saaj.soap.SAAJMetaFactoryImpl
+CLSS public com.sun.xml.ws.util.Constants
 cons public init()
-fld protected final static java.util.logging.Logger log
-meth protected javax.xml.soap.MessageFactory newMessageFactory(java.lang.String) throws javax.xml.soap.SOAPException
-meth protected javax.xml.soap.SOAPFactory newSOAPFactory(java.lang.String) throws javax.xml.soap.SOAPException
-supr javax.xml.soap.SAAJMetaFactory
-
-CLSS public abstract interface com.sun.xml.messaging.saaj.soap.SOAPDocument
-meth public abstract com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl getDocument()
-meth public abstract com.sun.xml.messaging.saaj.soap.SOAPPartImpl getSOAPPart()
+fld public final static java.lang.String LoggingDomain = "com.sun.xml.ws"
+supr java.lang.Object
 
-CLSS public com.sun.xml.messaging.saaj.soap.SOAPDocumentFragment
+CLSS public com.sun.xml.ws.util.DOMUtil
+cons public init()
+meth public static java.util.List<org.w3c.dom.Element> getChildElements(org.w3c.dom.Node)
+ anno 0 com.sun.istack.NotNull()
+meth public static org.w3c.dom.Document createDom()
+meth public static org.w3c.dom.Element getFirstChild(org.w3c.dom.Element,java.lang.String,java.lang.String)
+meth public static org.w3c.dom.Element getFirstElementChild(org.w3c.dom.Node)
+ anno 0 com.sun.istack.Nullable()
+meth public static void serializeNode(org.w3c.dom.Element,javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
+meth public static void writeTagWithAttributes(org.w3c.dom.Element,javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
+supr java.lang.Object
+hfds db
 
-CLSS public com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl
-hfds XMLNS,enclosingSOAPPart
+CLSS public com.sun.xml.ws.util.FastInfosetUtil
+meth public static boolean isFastInfosetSource(javax.xml.transform.Source)
+meth public static com.sun.xml.ws.api.pipe.Codec getFICodec()
+meth public static com.sun.xml.ws.api.pipe.Codec getFICodec(com.sun.xml.ws.api.pipe.StreamSOAPCodec,com.sun.xml.ws.api.SOAPVersion)
+meth public static javax.xml.stream.XMLStreamReader createFIStreamReader(javax.xml.transform.Source)
+supr java.lang.Object
+hfds LOG,fi
+hcls FISupport
 
-CLSS public abstract com.sun.xml.messaging.saaj.soap.SOAPFactoryImpl
-cons public init()
-fld protected final static java.util.logging.Logger log
-meth protected abstract com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl createDocument()
-meth public javax.xml.soap.Detail createDetail() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.Name createName(java.lang.String) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.Name createName(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(java.lang.String) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(javax.xml.soap.Name) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(org.w3c.dom.Element) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPFault createFault() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPFault createFault(java.lang.String,javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
-supr javax.xml.soap.SOAPFactory
-
-CLSS public com.sun.xml.messaging.saaj.soap.SOAPIOException
+CLSS public com.sun.xml.ws.util.HandlerAnnotationInfo
 cons public init()
-cons public init(java.lang.String)
-cons public init(java.lang.String,java.lang.Throwable)
-cons public init(java.lang.Throwable)
-meth public java.lang.String getLocalizedMessage()
-meth public java.lang.String getMessage()
-meth public java.lang.String toString()
-meth public java.lang.Throwable fillInStackTrace()
-meth public void printStackTrace()
-meth public void printStackTrace(java.io.PrintStream)
-meth public void printStackTrace(java.io.PrintWriter)
-supr java.io.IOException
-hfds soapException
+meth public java.util.List<javax.xml.ws.handler.Handler> getHandlers()
+meth public java.util.Set<java.lang.String> getRoles()
+meth public void setHandlers(java.util.List<javax.xml.ws.handler.Handler>)
+meth public void setRoles(java.util.Set<java.lang.String>)
+supr java.lang.Object
+hfds handlers,roles
 
-CLSS public abstract com.sun.xml.messaging.saaj.soap.SOAPPartImpl
-cons protected init()
-cons protected init(com.sun.xml.messaging.saaj.soap.MessageImpl)
-fld protected boolean omitXmlDecl
-fld protected com.sun.xml.messaging.saaj.soap.Envelope envelope
-fld protected com.sun.xml.messaging.saaj.soap.MessageImpl message
-fld protected com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl document
-fld protected final static java.util.logging.Logger log
-fld protected java.lang.String sourceCharsetEncoding
-fld protected javax.xml.soap.MimeHeaders headers
-fld protected javax.xml.transform.Source source
-intf com.sun.xml.messaging.saaj.soap.SOAPDocument
-meth protected abstract com.sun.xml.messaging.saaj.soap.Envelope createEmptyEnvelope(java.lang.String) throws javax.xml.soap.SOAPException
-meth protected abstract com.sun.xml.messaging.saaj.soap.Envelope createEnvelopeFromSource() throws javax.xml.soap.SOAPException
-meth protected abstract com.sun.xml.messaging.saaj.soap.SOAPPartImpl duplicateType()
-meth protected abstract java.lang.String getContentType()
-meth protected com.sun.xml.messaging.saaj.soap.SOAPPartImpl doCloneNode()
-meth protected com.sun.xml.messaging.saaj.util.XMLDeclarationParser lookForXmlDecl() throws javax.xml.soap.SOAPException
-meth protected java.lang.String getContentTypeString()
-meth protected void doGetDocumentElement()
-meth protected void lookForEnvelope() throws javax.xml.soap.SOAPException
-meth public boolean getStrictErrorChecking()
-meth public boolean getXmlStandalone()
-meth public boolean hasAttributes()
-meth public boolean hasChildNodes()
-meth public boolean isDefaultNamespace(java.lang.String)
-meth public boolean isEqualNode(org.w3c.dom.Node)
-meth public boolean isFastInfoset()
-meth public boolean isSameNode(org.w3c.dom.Node)
-meth public boolean isSupported(java.lang.String,java.lang.String)
-meth public com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl getDocument()
-meth public com.sun.xml.messaging.saaj.soap.SOAPPartImpl getSOAPPart()
-meth public java.io.InputStream getContentAsStream() throws java.io.IOException
-meth public java.lang.Object getFeature(java.lang.String,java.lang.String)
-meth public java.lang.Object getUserData(java.lang.String)
-meth public java.lang.Object setUserData(java.lang.String,java.lang.Object,org.w3c.dom.UserDataHandler)
-meth public java.lang.String getBaseURI()
-meth public java.lang.String getDocumentURI()
-meth public java.lang.String getInputEncoding()
-meth public java.lang.String getLocalName()
-meth public java.lang.String getNamespaceURI()
-meth public java.lang.String getNodeName()
-meth public java.lang.String getNodeValue()
-meth public java.lang.String getPrefix()
-meth public java.lang.String getSourceCharsetEncoding()
-meth public java.lang.String getTextContent()
-meth public java.lang.String getValue()
-meth public java.lang.String getXmlEncoding()
-meth public java.lang.String getXmlVersion()
-meth public java.lang.String lookupNamespaceURI(java.lang.String)
-meth public java.lang.String lookupPrefix(java.lang.String)
-meth public java.lang.String[] getMimeHeader(java.lang.String)
-meth public java.util.Iterator getAllMimeHeaders()
-meth public java.util.Iterator getMatchingMimeHeaders(java.lang.String[])
-meth public java.util.Iterator getNonMatchingMimeHeaders(java.lang.String[])
-meth public javax.xml.soap.SOAPElement getParentElement()
-meth public javax.xml.soap.SOAPEnvelope getEnvelope() throws javax.xml.soap.SOAPException
-meth public javax.xml.transform.Source getContent() throws javax.xml.soap.SOAPException
-meth public org.w3c.dom.Attr createAttribute(java.lang.String)
-meth public org.w3c.dom.Attr createAttributeNS(java.lang.String,java.lang.String)
-meth public org.w3c.dom.CDATASection createCDATASection(java.lang.String)
-meth public org.w3c.dom.Comment createComment(java.lang.String)
-meth public org.w3c.dom.DOMConfiguration getDomConfig()
-meth public org.w3c.dom.DOMImplementation getImplementation()
-meth public org.w3c.dom.Document getOwnerDocument()
-meth public org.w3c.dom.DocumentFragment createDocumentFragment()
-meth public org.w3c.dom.DocumentType getDoctype()
-meth public org.w3c.dom.Element createElement(java.lang.String)
-meth public org.w3c.dom.Element createElementNS(java.lang.String,java.lang.String)
-meth public org.w3c.dom.Element getDocumentElement()
-meth public org.w3c.dom.Element getElementById(java.lang.String)
-meth public org.w3c.dom.EntityReference createEntityReference(java.lang.String)
-meth public org.w3c.dom.NamedNodeMap getAttributes()
-meth public org.w3c.dom.Node adoptNode(org.w3c.dom.Node)
-meth public org.w3c.dom.Node appendChild(org.w3c.dom.Node)
-meth public org.w3c.dom.Node cloneNode(boolean)
-meth public org.w3c.dom.Node getFirstChild()
-meth public org.w3c.dom.Node getLastChild()
-meth public org.w3c.dom.Node getNextSibling()
-meth public org.w3c.dom.Node getParentNode()
-meth public org.w3c.dom.Node getPreviousSibling()
-meth public org.w3c.dom.Node importNode(org.w3c.dom.Node,boolean)
-meth public org.w3c.dom.Node insertBefore(org.w3c.dom.Node,org.w3c.dom.Node)
-meth public org.w3c.dom.Node removeChild(org.w3c.dom.Node)
-meth public org.w3c.dom.Node renameNode(org.w3c.dom.Node,java.lang.String,java.lang.String)
-meth public org.w3c.dom.Node replaceChild(org.w3c.dom.Node,org.w3c.dom.Node)
-meth public org.w3c.dom.NodeList getChildNodes()
-meth public org.w3c.dom.NodeList getElementsByTagName(java.lang.String)
-meth public org.w3c.dom.NodeList getElementsByTagNameNS(java.lang.String,java.lang.String)
-meth public org.w3c.dom.ProcessingInstruction createProcessingInstruction(java.lang.String,java.lang.String)
-meth public org.w3c.dom.Text createTextNode(java.lang.String)
-meth public short compareDocumentPosition(org.w3c.dom.Node)
-meth public short getNodeType()
-meth public void addMimeHeader(java.lang.String,java.lang.String)
-meth public void detachNode()
-meth public void normalize()
-meth public void normalizeDocument()
-meth public void recycleNode()
-meth public void removeAllMimeHeaders()
-meth public void removeMimeHeader(java.lang.String)
-meth public void setContent(javax.xml.transform.Source) throws javax.xml.soap.SOAPException
-meth public void setDocumentURI(java.lang.String)
-meth public void setMimeHeader(java.lang.String,java.lang.String)
-meth public void setNodeValue(java.lang.String)
-meth public void setParentElement(javax.xml.soap.SOAPElement) throws javax.xml.soap.SOAPException
-meth public void setPrefix(java.lang.String)
-meth public void setSourceCharsetEncoding(java.lang.String)
-meth public void setStrictErrorChecking(boolean)
-meth public void setTextContent(java.lang.String)
-meth public void setValue(java.lang.String)
-meth public void setXmlStandalone(boolean)
-meth public void setXmlVersion(java.lang.String)
-supr javax.xml.soap.SOAPPart
-hfds lazyContentLength,sourceWasSet
-
-CLSS public com.sun.xml.messaging.saaj.soap.SOAPVersionMismatchException
+CLSS public com.sun.xml.ws.util.HandlerAnnotationProcessor
 cons public init()
-cons public init(java.lang.String)
-cons public init(java.lang.String,java.lang.Throwable)
-cons public init(java.lang.Throwable)
-supr com.sun.xml.messaging.saaj.SOAPExceptionImpl
+meth public static com.sun.xml.ws.handler.HandlerChainsModel buildHandlerChainsModel(java.lang.Class<?>)
+meth public static com.sun.xml.ws.util.HandlerAnnotationInfo buildHandlerInfo(java.lang.Class<?>,javax.xml.namespace.QName,javax.xml.namespace.QName,com.sun.xml.ws.api.WSBinding)
+ anno 1 com.sun.istack.NotNull()
+supr java.lang.Object
+hfds logger
 
-CLSS public com.sun.xml.messaging.saaj.soap.StringDataContentHandler
+CLSS public abstract com.sun.xml.ws.util.InjectionPlan<%0 extends java.lang.Object, %1 extends java.lang.Object>
 cons public init()
-intf javax.activation.DataContentHandler
-meth protected javax.activation.ActivationDataFlavor getDF()
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource) throws java.io.IOException
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource) throws java.io.IOException
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
+innr public static FieldInjectionPlan
+innr public static MethodInjectionPlan
+meth public abstract void inject({com.sun.xml.ws.util.InjectionPlan%0},{com.sun.xml.ws.util.InjectionPlan%1})
+meth public static <%0 extends java.lang.Object, %1 extends java.lang.Object> com.sun.xml.ws.util.InjectionPlan<{%%0},{%%1}> buildInjectionPlan(java.lang.Class<? extends {%%0}>,java.lang.Class<{%%1}>,boolean)
+meth public void inject({com.sun.xml.ws.util.InjectionPlan%0},java.util.concurrent.Callable<{com.sun.xml.ws.util.InjectionPlan%1}>)
 supr java.lang.Object
-hfds myDF
-
-CLSS public com.sun.xml.messaging.saaj.soap.XmlDataContentHandler
-cons public init() throws java.lang.ClassNotFoundException
-fld public final java.lang.String STR_SRC = "javax.xml.transform.stream.StreamSource"
-intf javax.activation.DataContentHandler
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.lang.Object getContent(javax.activation.DataSource) throws java.io.IOException
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource) throws java.io.IOException
-meth public void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
-supr java.lang.Object
-hfds streamSourceClass
+hcls Compositor
 
-CLSS public abstract interface com.sun.xml.ws.Closeable
-intf java.io.Closeable
-meth public abstract void close()
-
-CLSS public abstract interface com.sun.xml.ws.addressing.v200408.MemberSubmissionAddressingConstants
-fld public final static java.lang.String ACTION_NOT_SUPPORTED_TEXT = "The \u0022%s\u0022 cannot be processed at the receiver."
-fld public final static java.lang.String ANONYMOUS_EPR = "<EndpointReference xmlns=\u0022http://schemas.xmlsoap.org/ws/2004/08/addressing\u0022>\n    <Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</Address>\n</EndpointReference>"
-fld public final static java.lang.String DESTINATION_UNREACHABLE_TEXT = "No route can be determined to reach the destination role defined by the WS-Addressing To."
-fld public final static java.lang.String ENDPOINT_UNAVAILABLE_TEXT = "The endpoint is unable to process the message at this time."
-fld public final static java.lang.String INVALID_MAP_TEXT = "A message information header is not valid and the message cannot be processed."
-fld public final static java.lang.String MAP_REQUIRED_TEXT = "A required message information header, To, MessageID, or Action, is not present."
-fld public final static java.lang.String MEX_METADATA_DIALECT_ATTRIBUTE = "Dialect"
-fld public final static java.lang.String MEX_METADATA_DIALECT_VALUE = "http://schemas.xmlsoap.org/wsdl/"
-fld public final static java.lang.String WSA_ADDRESS_NAME = "Address"
-fld public final static java.lang.String WSA_ANONYMOUS_ADDRESS = "http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"
-fld public final static java.lang.String WSA_DEFAULT_FAULT_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/addressing/fault"
-fld public final static java.lang.String WSA_NAMESPACE_NAME = "http://schemas.xmlsoap.org/ws/2004/08/addressing"
-fld public final static java.lang.String WSA_NAMESPACE_POLICY_NAME = "http://schemas.xmlsoap.org/ws/2004/08/addressing/policy"
-fld public final static java.lang.String WSA_NAMESPACE_WSDL_NAME = "http://schemas.xmlsoap.org/ws/2004/08/addressing"
-fld public final static java.lang.String WSA_NONE_ADDRESS = ""
-fld public final static java.lang.String WSA_PORTNAME_NAME = "PortName"
-fld public final static java.lang.String WSA_PORTTYPE_NAME = "PortType"
-fld public final static java.lang.String WSA_SERVICENAME_NAME = "ServiceName"
-fld public final static javax.xml.namespace.QName ACTION_NOT_SUPPORTED_QNAME
-fld public final static javax.xml.namespace.QName DESTINATION_UNREACHABLE_QNAME
-fld public final static javax.xml.namespace.QName ENDPOINT_UNAVAILABLE_QNAME
-fld public final static javax.xml.namespace.QName FAULT_DETAIL_QNAME
-fld public final static javax.xml.namespace.QName INVALID_MAP_QNAME
-fld public final static javax.xml.namespace.QName MAP_REQUIRED_QNAME
-fld public final static javax.xml.namespace.QName MEX_METADATA
-fld public final static javax.xml.namespace.QName MEX_METADATA_SECTION
-fld public final static javax.xml.namespace.QName PROBLEM_ACTION_QNAME
-fld public final static javax.xml.namespace.QName PROBLEM_HEADER_QNAME_QNAME
-fld public final static javax.xml.namespace.QName WSA_ADDRESS_QNAME
-
-CLSS public abstract com.sun.xml.ws.api.BindingID
-cons public init()
-fld public final static com.sun.xml.ws.api.BindingID XML_HTTP
-fld public final static com.sun.xml.ws.api.BindingID$SOAPHTTPImpl SOAP11_HTTP
-fld public final static com.sun.xml.ws.api.BindingID$SOAPHTTPImpl SOAP11_HTTP_MTOM
-fld public final static com.sun.xml.ws.api.BindingID$SOAPHTTPImpl SOAP12_HTTP
-fld public final static com.sun.xml.ws.api.BindingID$SOAPHTTPImpl SOAP12_HTTP_MTOM
-fld public final static com.sun.xml.ws.api.BindingID$SOAPHTTPImpl X_SOAP12_HTTP
-meth public !varargs final com.sun.xml.ws.api.WSBinding createBinding(javax.xml.ws.WebServiceFeature[])
- anno 0 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.SOAPVersion getSOAPVersion()
-meth public abstract com.sun.xml.ws.api.pipe.Codec createEncoder(com.sun.xml.ws.api.WSBinding)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public abstract java.lang.String toString()
-meth public boolean canGenerateWSDL()
-meth public boolean equals(java.lang.Object)
-meth public com.sun.xml.ws.binding.WebServiceFeatureList createBuiltinFeatureList()
-meth public final com.sun.xml.ws.api.WSBinding createBinding()
- anno 0 com.sun.istack.NotNull()
-meth public final com.sun.xml.ws.api.WSBinding createBinding(com.sun.xml.ws.api.WSFeatureList)
- anno 0 com.sun.istack.NotNull()
-meth public int hashCode()
-meth public java.lang.String getParameter(java.lang.String,java.lang.String)
-meth public java.lang.String getTransport()
- anno 0 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.BindingID parse(java.lang.Class<?>)
- anno 0 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.BindingID parse(java.lang.String)
- anno 0 com.sun.istack.NotNull()
-supr java.lang.Object
-hfds REST_HTTP
-hcls Impl,SOAPHTTPImpl
-
-CLSS public abstract com.sun.xml.ws.api.BindingIDFactory
-cons public init()
-meth public abstract com.sun.xml.ws.api.BindingID parse(java.lang.String)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-supr java.lang.Object
-
-CLSS public abstract interface com.sun.xml.ws.api.Cancelable
-meth public abstract void cancel(boolean)
-
-CLSS public abstract interface com.sun.xml.ws.api.Component
-meth public abstract <%0 extends java.lang.Object> {%%0} getSPI(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-
-CLSS public abstract interface com.sun.xml.ws.api.ComponentEx
-intf com.sun.xml.ws.api.Component
-meth public abstract <%0 extends java.lang.Object> java.lang.Iterable<{%%0}> getIterableSPI(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-
-CLSS public com.sun.xml.ws.api.ComponentFeature
-cons public init(com.sun.xml.ws.api.Component)
-cons public init(com.sun.xml.ws.api.Component,com.sun.xml.ws.api.ComponentFeature$Target)
-innr public final static !enum Target
-intf com.sun.xml.ws.api.ServiceSharedFeatureMarker
-meth public com.sun.xml.ws.api.Component getComponent()
-meth public com.sun.xml.ws.api.ComponentFeature$Target getTarget()
-meth public java.lang.String getID()
-supr javax.xml.ws.WebServiceFeature
-hfds component,target
-
-CLSS public final static !enum com.sun.xml.ws.api.ComponentFeature$Target
- outer com.sun.xml.ws.api.ComponentFeature
-fld public final static com.sun.xml.ws.api.ComponentFeature$Target CONTAINER
-fld public final static com.sun.xml.ws.api.ComponentFeature$Target ENDPOINT
-fld public final static com.sun.xml.ws.api.ComponentFeature$Target SERVICE
-fld public final static com.sun.xml.ws.api.ComponentFeature$Target STUB
-meth public static com.sun.xml.ws.api.ComponentFeature$Target valueOf(java.lang.String)
-meth public static com.sun.xml.ws.api.ComponentFeature$Target[] values()
-supr java.lang.Enum<com.sun.xml.ws.api.ComponentFeature$Target>
-
-CLSS public abstract interface com.sun.xml.ws.api.ComponentRegistry
-intf com.sun.xml.ws.api.Component
-meth public abstract java.util.Set<com.sun.xml.ws.api.Component> getComponents()
- anno 0 com.sun.istack.NotNull()
-
-CLSS public abstract com.sun.xml.ws.api.DistributedPropertySet
-cons public init()
-intf org.jvnet.ws.message.DistributedPropertySet
-meth public <%0 extends org.jvnet.ws.message.PropertySet> {%%0} getSatellite(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.Nullable()
-meth public boolean supports(java.lang.Object)
-meth public java.lang.Object get(java.lang.Object)
-meth public java.lang.Object put(java.lang.String,java.lang.Object)
-meth public java.lang.Object remove(java.lang.Object)
-meth public void addSatellite(com.sun.xml.ws.api.PropertySet)
- anno 1 com.sun.istack.NotNull()
-meth public void addSatellite(java.lang.Class,com.sun.xml.ws.api.PropertySet)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public void addSatellite(java.lang.Class,org.jvnet.ws.message.PropertySet)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public void addSatellite(org.jvnet.ws.message.PropertySet)
-meth public void copySatelliteInto(com.sun.xml.ws.api.DistributedPropertySet)
- anno 1 com.sun.istack.NotNull()
-meth public void copySatelliteInto(org.jvnet.ws.message.MessageContext)
-meth public void removeSatellite(org.jvnet.ws.message.PropertySet)
-supr com.sun.xml.ws.api.PropertySet
-hfds satellites
-
-CLSS public final com.sun.xml.ws.api.EndpointAddress
-cons public init(java.lang.String) throws java.net.URISyntaxException
-cons public init(java.net.URI)
-meth public java.lang.String toString()
-meth public java.net.URI getURI()
-meth public java.net.URL getURL()
-meth public java.net.URLConnection openConnection() throws java.io.IOException
-meth public static com.sun.xml.ws.api.EndpointAddress create(java.lang.String)
-supr java.lang.Object
-hfds dontUseProxyMethod,proxy,stringForm,uri,url
-
-CLSS public abstract interface !annotation com.sun.xml.ws.api.FeatureConstructor
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[CONSTRUCTOR])
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String[] value()
-
-CLSS public abstract interface com.sun.xml.ws.api.ImpliesWebServiceFeature
-meth public abstract void implyFeatures(com.sun.xml.ws.api.WSFeatureList)
-
-CLSS public abstract com.sun.xml.ws.api.PropertySet
-cons protected init()
-innr protected abstract interface static Accessor
-innr protected final static PropertyMap
-intf org.jvnet.ws.message.PropertySet
-meth protected abstract com.sun.xml.ws.api.PropertySet$PropertyMap getPropertyMap()
-meth protected static com.sun.xml.ws.api.PropertySet$PropertyMap parse(java.lang.Class)
-meth public boolean supports(java.lang.Object)
-meth public final boolean containsKey(java.lang.Object)
-meth public final java.util.Map<java.lang.String,java.lang.Object> createMapView()
-meth public java.lang.Object get(java.lang.Object)
-meth public java.lang.Object put(java.lang.String,java.lang.Object)
-meth public java.lang.Object remove(java.lang.Object)
-supr java.lang.Object
-hfds mapViewCore
-hcls FieldAccessor,MethodAccessor
-
-CLSS protected abstract interface static com.sun.xml.ws.api.PropertySet$Accessor
- outer com.sun.xml.ws.api.PropertySet
-meth public abstract boolean hasValue(com.sun.xml.ws.api.PropertySet)
-meth public abstract java.lang.Object get(com.sun.xml.ws.api.PropertySet)
-meth public abstract java.lang.String getName()
-meth public abstract void set(com.sun.xml.ws.api.PropertySet,java.lang.Object)
-
-CLSS protected final static com.sun.xml.ws.api.PropertySet$PropertyMap
- outer com.sun.xml.ws.api.PropertySet
-cons protected init()
-supr java.util.HashMap<java.lang.String,com.sun.xml.ws.api.PropertySet$Accessor>
-
-CLSS public abstract com.sun.xml.ws.api.ResourceLoader
-cons public init()
-meth public abstract java.net.URL getResource(java.lang.String) throws java.net.MalformedURLException
-supr java.lang.Object
-
-CLSS public final !enum com.sun.xml.ws.api.SOAPVersion
-fld public final java.lang.String contentType
-fld public final java.lang.String httpBindingId
-fld public final java.lang.String implicitRole
-fld public final java.lang.String nsUri
-fld public final java.lang.String roleAttributeName
-fld public final java.util.Set<java.lang.String> implicitRoleSet
-fld public final java.util.Set<java.lang.String> requiredRoles
-fld public final javax.xml.namespace.QName faultCodeClient
-fld public final javax.xml.namespace.QName faultCodeMustUnderstand
-fld public final javax.xml.namespace.QName faultCodeServer
-fld public final javax.xml.soap.MessageFactory saajMessageFactory
-fld public final javax.xml.soap.SOAPFactory saajSoapFactory
-fld public final static com.sun.xml.ws.api.SOAPVersion SOAP_11
-fld public final static com.sun.xml.ws.api.SOAPVersion SOAP_12
-meth public java.lang.String toString()
-meth public javax.xml.soap.MessageFactory getMessageFactory()
-meth public javax.xml.soap.SOAPFactory getSOAPFactory()
-meth public static com.sun.xml.ws.api.SOAPVersion fromHttpBinding(java.lang.String)
-meth public static com.sun.xml.ws.api.SOAPVersion fromNsUri(java.lang.String)
-meth public static com.sun.xml.ws.api.SOAPVersion valueOf(java.lang.String)
-meth public static com.sun.xml.ws.api.SOAPVersion[] values()
-supr java.lang.Enum<com.sun.xml.ws.api.SOAPVersion>
-hfds saajFactoryString
-
-CLSS public abstract interface com.sun.xml.ws.api.ServiceSharedFeatureMarker
-
-CLSS public abstract interface com.sun.xml.ws.api.WSBinding
-intf javax.xml.ws.Binding
-meth public abstract <%0 extends javax.xml.ws.WebServiceFeature> {%%0} getFeature(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public abstract <%0 extends javax.xml.ws.WebServiceFeature> {%%0} getOperationFeature(java.lang.Class<{%%0}>,javax.xml.namespace.QName)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract boolean isFeatureEnabled(java.lang.Class<? extends javax.xml.ws.WebServiceFeature>)
- anno 1 com.sun.istack.NotNull()
-meth public abstract boolean isOperationFeatureEnabled(java.lang.Class<? extends javax.xml.ws.WebServiceFeature>,javax.xml.namespace.QName)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.BindingID getBindingId()
- anno 0 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.SOAPVersion getSOAPVersion()
-meth public abstract com.sun.xml.ws.api.WSFeatureList getFaultMessageFeatures(javax.xml.namespace.QName,javax.xml.namespace.QName)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.WSFeatureList getFeatures()
- anno 0 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.WSFeatureList getInputMessageFeatures(javax.xml.namespace.QName)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.WSFeatureList getOperationFeatures(javax.xml.namespace.QName)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.WSFeatureList getOutputMessageFeatures(javax.xml.namespace.QName)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.addressing.AddressingVersion getAddressingVersion()
-meth public abstract java.util.List<javax.xml.ws.handler.Handler> getHandlerChain()
- anno 0 com.sun.istack.NotNull()
-meth public abstract java.util.Set<javax.xml.namespace.QName> getKnownHeaders()
- anno 0 com.sun.istack.NotNull()
-
-CLSS public abstract com.sun.xml.ws.api.WSDLLocator
-cons public init()
-meth public abstract java.net.URL locateWSDL(java.lang.Class<javax.xml.ws.Service>,java.lang.String) throws java.net.MalformedURLException
-supr java.lang.Object
-
-CLSS public abstract interface com.sun.xml.ws.api.WSFeatureList
-intf java.lang.Iterable<javax.xml.ws.WebServiceFeature>
-meth public abstract <%0 extends javax.xml.ws.WebServiceFeature> {%%0} get(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public abstract boolean isEnabled(java.lang.Class<? extends javax.xml.ws.WebServiceFeature>)
- anno 1 com.sun.istack.NotNull()
-meth public abstract javax.xml.ws.WebServiceFeature[] toArray()
- anno 0 com.sun.istack.NotNull()
-meth public abstract void mergeFeatures(java.lang.Iterable<javax.xml.ws.WebServiceFeature>,boolean)
- anno 1 com.sun.istack.NotNull()
-meth public abstract void mergeFeatures(javax.xml.ws.WebServiceFeature[],boolean)
- anno 1 com.sun.istack.NotNull()
-
-CLSS public abstract com.sun.xml.ws.api.WSService
-cons protected init()
-fld protected final static com.sun.xml.ws.api.WSService$InitParams EMPTY_PARAMS
-fld protected final static java.lang.ThreadLocal<com.sun.xml.ws.api.WSService$InitParams> INIT_PARAMS
-innr public final static InitParams
-intf com.sun.xml.ws.api.ComponentRegistry
-meth public <%0 extends java.lang.Object> {%%0} getSPI(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public abstract !varargs <%0 extends java.lang.Object> javax.xml.ws.Dispatch<{%%0}> createDispatch(javax.xml.namespace.QName,com.sun.xml.ws.api.addressing.WSEndpointReference,java.lang.Class<{%%0}>,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs <%0 extends java.lang.Object> {%%0} getPort(com.sun.xml.ws.api.addressing.WSEndpointReference,java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs javax.xml.ws.Dispatch<java.lang.Object> createDispatch(javax.xml.namespace.QName,com.sun.xml.ws.api.addressing.WSEndpointReference,javax.xml.bind.JAXBContext,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
-meth public abstract com.sun.xml.ws.api.server.Container getContainer()
- anno 0 com.sun.istack.NotNull()
-meth public java.util.Set<com.sun.xml.ws.api.Component> getComponents()
- anno 0 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.WSService create()
-meth public static com.sun.xml.ws.api.WSService create(java.net.URL,javax.xml.namespace.QName)
-meth public static com.sun.xml.ws.api.WSService create(javax.xml.namespace.QName)
-meth public static com.sun.xml.ws.api.WSService unwrap(javax.xml.ws.Service)
-meth public static javax.xml.ws.Service create(java.net.URL,javax.xml.namespace.QName,com.sun.xml.ws.api.WSService$InitParams)
-supr javax.xml.ws.spi.ServiceDelegate
-hfds components
-
-CLSS public final static com.sun.xml.ws.api.WSService$InitParams
- outer com.sun.xml.ws.api.WSService
-cons public init()
-meth public com.sun.xml.ws.api.server.Container getContainer()
-meth public void setContainer(com.sun.xml.ws.api.server.Container)
-supr java.lang.Object
-hfds container
-
-CLSS public com.sun.xml.ws.api.WebServiceFeatureFactory
-cons public init()
-meth public static com.sun.xml.ws.api.WSFeatureList getWSFeatureList(java.lang.Iterable<java.lang.annotation.Annotation>)
-meth public static javax.xml.ws.WebServiceFeature getWebServiceFeature(java.lang.annotation.Annotation)
-supr java.lang.Object
-
-CLSS public abstract !enum com.sun.xml.ws.api.addressing.AddressingVersion
-fld public final com.sun.xml.ws.api.addressing.AddressingVersion$EPR eprType
-fld public final com.sun.xml.ws.api.addressing.WSEndpointReference anonymousEpr
-fld public final java.lang.String actionNotSupportedText
-fld public final java.lang.String anonymousUri
- anno 0 com.sun.istack.NotNull()
-fld public final java.lang.String noneUri
- anno 0 com.sun.istack.NotNull()
-fld public final java.lang.String nsUri
-fld public final java.lang.String policyNsUri
-fld public final java.lang.String wsdlNsUri
-fld public final javax.xml.namespace.QName actionMismatchTag
-fld public final javax.xml.namespace.QName actionNotSupportedTag
-fld public final javax.xml.namespace.QName actionTag
-fld public final javax.xml.namespace.QName faultDetailTag
-fld public final javax.xml.namespace.QName faultToTag
-fld public final javax.xml.namespace.QName fault_missingAddressInEpr
-fld public final javax.xml.namespace.QName fromTag
-fld public final javax.xml.namespace.QName invalidAddressTag
-fld public final javax.xml.namespace.QName invalidCardinalityTag
-fld public final javax.xml.namespace.QName invalidMapTag
-fld public final javax.xml.namespace.QName isReferenceParameterTag
-fld public final javax.xml.namespace.QName mapRequiredTag
-fld public final javax.xml.namespace.QName messageIDTag
-fld public final javax.xml.namespace.QName problemActionTag
-fld public final javax.xml.namespace.QName problemHeaderQNameTag
-fld public final javax.xml.namespace.QName relatesToTag
-fld public final javax.xml.namespace.QName replyToTag
-fld public final javax.xml.namespace.QName toTag
-fld public final javax.xml.namespace.QName wsdlActionTag
-fld public final javax.xml.namespace.QName wsdlAnonymousTag
-fld public final javax.xml.namespace.QName wsdlExtensionTag
-fld public final static com.sun.xml.ws.api.addressing.AddressingVersion MEMBER
-fld public final static com.sun.xml.ws.api.addressing.AddressingVersion W3C
-fld public final static java.lang.String UNSET_INPUT_ACTION = "http://jax-ws.dev.java.net/addressing/input-action-not-set"
-fld public final static java.lang.String UNSET_OUTPUT_ACTION = "http://jax-ws.dev.java.net/addressing/output-action-not-set"
-fld public final static javax.xml.namespace.QName fault_duplicateAddressInEpr
-innr public final static EPR
-meth public abstract boolean isReferenceParameter(java.lang.String)
-meth public abstract com.sun.xml.ws.addressing.WsaTubeHelper getWsaHelper(com.sun.xml.ws.api.model.wsdl.WSDLPort,com.sun.xml.ws.api.model.SEIModel,com.sun.xml.ws.api.WSBinding)
-meth public abstract java.lang.Class<? extends javax.xml.ws.WebServiceFeature> getFeatureClass()
-meth public abstract java.lang.String getInvalidMapText()
-meth public abstract java.lang.String getMapRequiredText()
-meth public abstract java.lang.String getPrefix()
-meth public abstract java.lang.String getWsdlPrefix()
-meth public final java.lang.String getAnonymousUri()
-meth public final java.lang.String getNoneUri()
-meth public java.lang.String getDefaultFaultAction()
-meth public java.lang.String getNsUri()
-meth public static boolean isEnabled(com.sun.xml.ws.api.WSBinding)
-meth public static boolean isRequired(com.sun.xml.ws.api.WSBinding)
-meth public static boolean isRequired(javax.xml.ws.WebServiceFeature)
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion fromBinding(com.sun.xml.ws.api.WSBinding)
- anno 0 com.sun.istack.Nullable()
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion fromFeature(javax.xml.ws.WebServiceFeature)
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion fromNsUri(java.lang.String)
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion fromPort(com.sun.xml.ws.api.model.wsdl.WSDLPort)
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion fromSpecClass(java.lang.Class<? extends javax.xml.ws.EndpointReference>)
- anno 0 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion valueOf(java.lang.String)
-meth public static com.sun.xml.ws.api.addressing.AddressingVersion[] values()
-meth public static javax.xml.ws.WebServiceFeature getFeature(java.lang.String,boolean,boolean)
- anno 0 com.sun.istack.NotNull()
-supr java.lang.Enum<com.sun.xml.ws.api.addressing.AddressingVersion>
-hfds EXTENDED_FAULT_NAMESPACE
-
-CLSS public final static com.sun.xml.ws.api.addressing.AddressingVersion$EPR
- outer com.sun.xml.ws.api.addressing.AddressingVersion
-cons public init(java.lang.Class<? extends javax.xml.ws.EndpointReference>,java.lang.String,java.lang.String,java.lang.String,java.lang.String,javax.xml.namespace.QName,java.lang.String,java.lang.String)
-fld public final java.lang.Class<? extends javax.xml.ws.EndpointReference> eprClass
-fld public final java.lang.String address
-fld public final java.lang.String portName
-fld public final java.lang.String portTypeName
-fld public final java.lang.String referenceParameters
-fld public final java.lang.String referenceProperties
-fld public final java.lang.String serviceName
-fld public final javax.xml.namespace.QName wsdlMetadata
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.api.addressing.NonAnonymousResponseProcessor
-cons protected init()
-meth public com.sun.xml.ws.api.message.Packet process(com.sun.xml.ws.api.message.Packet)
-meth public static com.sun.xml.ws.api.addressing.NonAnonymousResponseProcessor getDefault()
-supr java.lang.Object
-hfds DEFAULT
-
-CLSS public com.sun.xml.ws.api.addressing.OneWayFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init()
-cons public init(boolean)
-cons public init(boolean,com.sun.xml.ws.api.addressing.WSEndpointReference)
-cons public init(boolean,com.sun.xml.ws.api.addressing.WSEndpointReference,com.sun.xml.ws.api.addressing.WSEndpointReference,java.lang.String)
-fld public final static java.lang.String ID = "http://java.sun.com/xml/ns/jaxws/addressing/oneway"
-meth public boolean hasSslEprs()
-meth public boolean isUseAsyncWithSyncInvoke()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getFaultTo()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getFaultTo(boolean)
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getFrom()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getReplyTo()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getReplyTo(boolean)
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getSslFaultTo()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getSslReplyTo()
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public java.lang.String getRelatesToID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public static com.sun.xml.ws.api.addressing.WSEndpointReference enableSslForEpr(com.sun.xml.ws.api.addressing.WSEndpointReference,java.lang.String,int)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.Nullable()
-meth public void setFaultTo(com.sun.xml.ws.api.addressing.WSEndpointReference)
-meth public void setFrom(com.sun.xml.ws.api.addressing.WSEndpointReference)
-meth public void setRelatesToID(java.lang.String)
-meth public void setReplyTo(com.sun.xml.ws.api.addressing.WSEndpointReference)
-meth public void setSslFaultTo(com.sun.xml.ws.api.addressing.WSEndpointReference)
-meth public void setSslReplyTo(com.sun.xml.ws.api.addressing.WSEndpointReference)
-meth public void setUseAsyncWithSyncInvoke(boolean)
-supr javax.xml.ws.WebServiceFeature
-hfds faultTo,from,relatesToID,replyTo,sslFaultTo,sslReplyTo,useAsyncWithSyncInvoke
-
-CLSS public final com.sun.xml.ws.api.addressing.WSEndpointReference
-cons public init(com.sun.xml.stream.buffer.XMLStreamBuffer,com.sun.xml.ws.api.addressing.AddressingVersion)
-cons public init(com.sun.xml.ws.api.addressing.AddressingVersion,java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.lang.String,java.util.List<org.w3c.dom.Element>,java.util.List<org.w3c.dom.Element>,java.util.Map<javax.xml.namespace.QName,java.lang.String>)
- anno 1 com.sun.istack.NotNull()
- anno 10 com.sun.istack.Nullable()
- anno 11 com.sun.istack.Nullable()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.Nullable()
- anno 4 com.sun.istack.Nullable()
- anno 5 com.sun.istack.Nullable()
- anno 6 com.sun.istack.Nullable()
- anno 7 com.sun.istack.Nullable()
- anno 8 com.sun.istack.Nullable()
- anno 9 com.sun.istack.Nullable()
-cons public init(com.sun.xml.ws.api.addressing.AddressingVersion,java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.Nullable()
- anno 4 com.sun.istack.Nullable()
- anno 5 com.sun.istack.Nullable()
- anno 6 com.sun.istack.Nullable()
- anno 7 com.sun.istack.Nullable()
- anno 8 com.sun.istack.Nullable()
-cons public init(com.sun.xml.ws.api.addressing.AddressingVersion,java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>,java.util.Collection<com.sun.xml.ws.api.addressing.WSEndpointReference$EPRExtension>,java.util.Map<javax.xml.namespace.QName,java.lang.String>)
- anno 1 com.sun.istack.NotNull()
- anno 10 com.sun.istack.Nullable()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.Nullable()
- anno 4 com.sun.istack.Nullable()
- anno 5 com.sun.istack.Nullable()
- anno 6 com.sun.istack.Nullable()
- anno 7 com.sun.istack.Nullable()
- anno 8 com.sun.istack.Nullable()
- anno 9 com.sun.istack.Nullable()
-cons public init(java.io.InputStream,com.sun.xml.ws.api.addressing.AddressingVersion) throws javax.xml.stream.XMLStreamException
-cons public init(java.lang.String,com.sun.xml.ws.api.addressing.AddressingVersion)
-cons public init(java.net.URI,com.sun.xml.ws.api.addressing.AddressingVersion)
-cons public init(java.net.URL,com.sun.xml.ws.api.addressing.AddressingVersion)
-cons public init(javax.xml.stream.XMLStreamReader,com.sun.xml.ws.api.addressing.AddressingVersion) throws javax.xml.stream.XMLStreamException
-cons public init(javax.xml.ws.EndpointReference)
-cons public init(javax.xml.ws.EndpointReference,com.sun.xml.ws.api.addressing.AddressingVersion)
-innr public Metadata
-innr public abstract static EPRExtension
-intf com.sun.xml.ws.api.model.wsdl.WSDLExtension
-meth public !varargs <%0 extends java.lang.Object> javax.xml.ws.Dispatch<{%%0}> createDispatch(javax.xml.ws.Service,java.lang.Class<{%%0}>,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.NotNull()
-meth public !varargs <%0 extends java.lang.Object> {%%0} getPort(javax.xml.ws.Service,java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public !varargs javax.xml.ws.Dispatch<java.lang.Object> createDispatch(javax.xml.ws.Service,javax.xml.bind.JAXBContext,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.NotNull()
-meth public <%0 extends javax.xml.ws.EndpointReference> {%%0} toSpec(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.NotNull()
-meth public boolean isAnonymous()
-meth public boolean isNone()
-meth public com.sun.xml.ws.api.addressing.AddressingVersion getVersion()
- anno 0 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference createWithAddress(java.lang.String)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference createWithAddress(java.net.URI)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference createWithAddress(java.net.URL)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference$EPRExtension getEPRExtension(javax.xml.namespace.QName) throws javax.xml.stream.XMLStreamException
- anno 0 com.sun.istack.Nullable()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference$Metadata getMetaData()
- anno 0 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Header createHeader(javax.xml.namespace.QName)
-meth public java.lang.String getAddress()
- anno 0 com.sun.istack.NotNull()
-meth public java.lang.String toString()
-meth public java.util.Collection<com.sun.xml.ws.api.addressing.WSEndpointReference$EPRExtension> getEPRExtensions() throws javax.xml.stream.XMLStreamException
- anno 0 com.sun.istack.NotNull()
-meth public javax.xml.namespace.QName getName()
-meth public javax.xml.stream.XMLStreamReader read(java.lang.String) throws javax.xml.stream.XMLStreamException
- anno 1 com.sun.istack.NotNull()
-meth public javax.xml.transform.Source asSource(java.lang.String)
- anno 1 com.sun.istack.NotNull()
-meth public javax.xml.ws.EndpointReference toSpec()
- anno 0 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.addressing.WSEndpointReference create(javax.xml.ws.EndpointReference)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.Nullable()
-meth public void addReferenceParameters(com.sun.xml.ws.api.message.HeaderList)
-meth public void addReferenceParametersToList(com.sun.xml.ws.api.message.HeaderList)
-meth public void writeTo(java.lang.String,javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public void writeTo(java.lang.String,org.xml.sax.ContentHandler,org.xml.sax.ErrorHandler,boolean) throws org.xml.sax.SAXException
- anno 1 com.sun.istack.NotNull()
-supr java.lang.Object
-hfds EMPTY_ARRAY,address,infoset,referenceParameters,rootElement,rootEprExtensions,version
-hcls SAXBufferProcessorImpl
-
-CLSS public abstract static com.sun.xml.ws.api.addressing.WSEndpointReference$EPRExtension
- outer com.sun.xml.ws.api.addressing.WSEndpointReference
-cons public init()
-meth public abstract javax.xml.namespace.QName getQName()
-meth public abstract javax.xml.stream.XMLStreamReader readAsXMLStreamReader() throws javax.xml.stream.XMLStreamException
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.api.addressing.WSEndpointReference$Metadata
- outer com.sun.xml.ws.api.addressing.WSEndpointReference
-meth public java.lang.String getWsdliLocation()
- anno 0 com.sun.istack.Nullable()
-meth public javax.xml.namespace.QName getPortName()
- anno 0 com.sun.istack.Nullable()
-meth public javax.xml.namespace.QName getPortTypeName()
- anno 0 com.sun.istack.Nullable()
-meth public javax.xml.namespace.QName getServiceName()
- anno 0 com.sun.istack.Nullable()
-meth public javax.xml.transform.Source getWsdlSource()
- anno 0 com.sun.istack.Nullable()
-supr java.lang.Object
-hfds portName,portTypeName,serviceName,wsdlSource,wsdliLocation
-
-CLSS abstract interface com.sun.xml.ws.api.addressing.package-info
-
-CLSS public abstract interface com.sun.xml.ws.api.ha.StickyFeature
-
-CLSS public abstract interface com.sun.xml.ws.api.message.Attachment
-meth public abstract byte[] asByteArray()
-meth public abstract java.io.InputStream asInputStream()
-meth public abstract java.lang.String getContentId()
- anno 0 com.sun.istack.NotNull()
-meth public abstract java.lang.String getContentType()
-meth public abstract javax.activation.DataHandler asDataHandler()
-meth public abstract javax.xml.transform.Source asSource()
-meth public abstract void writeTo(java.io.OutputStream) throws java.io.IOException
-meth public abstract void writeTo(javax.xml.soap.SOAPMessage) throws javax.xml.soap.SOAPException
-
-CLSS public abstract interface com.sun.xml.ws.api.message.AttachmentEx
-innr public abstract interface static MimeHeader
-intf com.sun.xml.ws.api.message.Attachment
-meth public abstract java.util.Iterator<com.sun.xml.ws.api.message.AttachmentEx$MimeHeader> getMimeHeaders()
- anno 0 com.sun.istack.NotNull()
-
-CLSS public abstract interface static com.sun.xml.ws.api.message.AttachmentEx$MimeHeader
- outer com.sun.xml.ws.api.message.AttachmentEx
-meth public abstract java.lang.String getName()
-meth public abstract java.lang.String getValue()
-
-CLSS public abstract interface com.sun.xml.ws.api.message.AttachmentSet
-intf java.lang.Iterable<com.sun.xml.ws.api.message.Attachment>
-meth public abstract boolean isEmpty()
-meth public abstract com.sun.xml.ws.api.message.Attachment get(java.lang.String)
- anno 0 com.sun.istack.Nullable()
-meth public abstract void add(com.sun.xml.ws.api.message.Attachment)
-
-CLSS public abstract com.sun.xml.ws.api.message.ExceptionHasMessage
-cons public !varargs init(java.lang.String,java.lang.Object[])
-meth public abstract com.sun.xml.ws.api.message.Message getFaultMessage()
-supr com.sun.xml.ws.util.exception.JAXWSExceptionBase
-
-CLSS public com.sun.xml.ws.api.message.FilterMessageImpl
-cons protected init(com.sun.xml.ws.api.message.Message)
-meth protected boolean hasAttachments()
-meth public <%0 extends java.lang.Object> {%%0} readPayloadAsJAXB(com.sun.xml.bind.api.Bridge<{%%0}>) throws javax.xml.bind.JAXBException
-meth public <%0 extends java.lang.Object> {%%0} readPayloadAsJAXB(com.sun.xml.ws.spi.db.XMLBridge<{%%0}>) throws javax.xml.bind.JAXBException
-meth public <%0 extends java.lang.Object> {%%0} readPayloadAsJAXB(javax.xml.bind.Unmarshaller) throws javax.xml.bind.JAXBException
-meth public boolean hasHeaders()
-meth public boolean hasPayload()
-meth public boolean isFault()
-meth public boolean isOneWay(com.sun.xml.ws.api.model.wsdl.WSDLPort)
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.AttachmentSet getAttachments()
- anno 0 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.HeaderList getHeaders()
- anno 0 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Message copy()
-meth public java.lang.String getID(com.sun.xml.ws.api.WSBinding)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public java.lang.String getID(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 0 com.sun.istack.NotNull()
-meth public java.lang.String getPayloadLocalPart()
- anno 0 com.sun.istack.Nullable()
-meth public java.lang.String getPayloadNamespaceURI()
-meth public javax.xml.namespace.QName getFirstDetailEntryName()
- anno 0 com.sun.istack.Nullable()
-meth public javax.xml.soap.SOAPMessage readAsSOAPMessage() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPMessage readAsSOAPMessage(com.sun.xml.ws.api.message.Packet,boolean) throws javax.xml.soap.SOAPException
-meth public javax.xml.stream.XMLStreamReader readPayload() throws javax.xml.stream.XMLStreamException
-meth public javax.xml.transform.Source readEnvelopeAsSource()
-meth public javax.xml.transform.Source readPayloadAsSource()
-meth public void consume()
-meth public void writePayloadTo(javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-meth public void writeTo(javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-meth public void writeTo(org.xml.sax.ContentHandler,org.xml.sax.ErrorHandler) throws org.xml.sax.SAXException
-supr com.sun.xml.ws.api.message.Message
-hfds delegate
-
-CLSS public abstract interface com.sun.xml.ws.api.message.Header
-meth public abstract <%0 extends java.lang.Object> {%%0} readAsJAXB(com.sun.xml.bind.api.Bridge<{%%0}>) throws javax.xml.bind.JAXBException
-meth public abstract <%0 extends java.lang.Object> {%%0} readAsJAXB(com.sun.xml.ws.spi.db.XMLBridge<{%%0}>) throws javax.xml.bind.JAXBException
-meth public abstract <%0 extends java.lang.Object> {%%0} readAsJAXB(javax.xml.bind.Unmarshaller) throws javax.xml.bind.JAXBException
-meth public abstract boolean isIgnorable(com.sun.xml.ws.api.SOAPVersion,java.util.Set<java.lang.String>)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract boolean isRelay()
-meth public abstract com.sun.xml.ws.api.addressing.WSEndpointReference readAsEPR(com.sun.xml.ws.api.addressing.AddressingVersion) throws javax.xml.stream.XMLStreamException
- anno 0 com.sun.istack.NotNull()
-meth public abstract java.lang.String getAttribute(java.lang.String,java.lang.String)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract java.lang.String getAttribute(javax.xml.namespace.QName)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public abstract java.lang.String getLocalPart()
- anno 0 com.sun.istack.NotNull()
-meth public abstract java.lang.String getNamespaceURI()
- anno 0 com.sun.istack.NotNull()
-meth public abstract java.lang.String getRole(com.sun.xml.ws.api.SOAPVersion)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public abstract java.lang.String getStringContent()
- anno 0 com.sun.istack.NotNull()
-meth public abstract javax.xml.stream.XMLStreamReader readHeader() throws javax.xml.stream.XMLStreamException
-meth public abstract void writeTo(javax.xml.soap.SOAPMessage) throws javax.xml.soap.SOAPException
-meth public abstract void writeTo(javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeTo(org.xml.sax.ContentHandler,org.xml.sax.ErrorHandler) throws org.xml.sax.SAXException
-
-CLSS public com.sun.xml.ws.api.message.HeaderList
-cons public init()
-cons public init(com.sun.xml.ws.api.message.HeaderList)
-meth protected com.sun.xml.ws.api.message.Header removeInternal(int)
-meth protected void addInternal(int,com.sun.xml.ws.api.message.Header)
-meth public !varargs void addAll(com.sun.xml.ws.api.message.Header[])
-meth public boolean add(com.sun.xml.ws.api.message.Header)
-meth public boolean addOrReplace(com.sun.xml.ws.api.message.Header)
-meth public boolean isUnderstood(int)
-meth public boolean remove(java.lang.Object)
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getFaultTo(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.addressing.WSEndpointReference getReplyTo(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Header get(int)
-meth public com.sun.xml.ws.api.message.Header get(java.lang.String,java.lang.String)
-meth public com.sun.xml.ws.api.message.Header get(java.lang.String,java.lang.String,boolean)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Header get(javax.xml.namespace.QName)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Header get(javax.xml.namespace.QName,boolean)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Header remove(int)
-meth public com.sun.xml.ws.api.message.Header remove(java.lang.String,java.lang.String)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Header remove(javax.xml.namespace.QName)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-meth public int size()
-meth public java.lang.String getAction(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public java.lang.String getMessageID(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public java.lang.String getRelatesTo(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public java.lang.String getTo(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
-meth public java.util.Iterator<com.sun.xml.ws.api.message.Header> getHeaders(java.lang.String)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public java.util.Iterator<com.sun.xml.ws.api.message.Header> getHeaders(java.lang.String,boolean)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public java.util.Iterator<com.sun.xml.ws.api.message.Header> getHeaders(java.lang.String,java.lang.String)
-meth public java.util.Iterator<com.sun.xml.ws.api.message.Header> getHeaders(java.lang.String,java.lang.String,boolean)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public java.util.Iterator<com.sun.xml.ws.api.message.Header> getHeaders(javax.xml.namespace.QName,boolean)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.message.HeaderList copy(com.sun.xml.ws.api.message.HeaderList)
-meth public void fillRequestAddressingHeaders(com.sun.xml.ws.api.message.Packet,com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion,boolean,java.lang.String)
-meth public void fillRequestAddressingHeaders(com.sun.xml.ws.api.message.Packet,com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion,boolean,java.lang.String,boolean)
-meth public void fillRequestAddressingHeaders(com.sun.xml.ws.api.model.wsdl.WSDLPort,com.sun.xml.ws.api.WSBinding,com.sun.xml.ws.api.message.Packet)
- anno 2 com.sun.istack.NotNull()
-meth public void readResponseAddressingHeaders(com.sun.xml.ws.api.model.wsdl.WSDLPort,com.sun.xml.ws.api.WSBinding)
-meth public void understood(com.sun.xml.ws.api.message.Header)
- anno 1 com.sun.istack.NotNull()
-meth public void understood(int)
-supr java.util.ArrayList<com.sun.xml.ws.api.message.Header>
-hfds moreUnderstoodBits,serialVersionUID,understoodBits
-
-CLSS public abstract com.sun.xml.ws.api.message.Headers
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.bind.api.Bridge,java.lang.Object)
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.ws.api.SOAPVersion,javax.xml.bind.Marshaller,java.lang.Object)
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.ws.api.SOAPVersion,javax.xml.bind.Marshaller,javax.xml.namespace.QName,java.lang.Object)
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.ws.api.SOAPVersion,javax.xml.stream.XMLStreamReader) throws javax.xml.stream.XMLStreamException
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.ws.api.SOAPVersion,org.w3c.dom.Element)
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.ws.spi.db.BindingContext,java.lang.Object)
-meth public static com.sun.xml.ws.api.message.Header create(com.sun.xml.ws.spi.db.XMLBridge,java.lang.Object)
-meth public static com.sun.xml.ws.api.message.Header create(javax.xml.bind.JAXBContext,java.lang.Object)
-meth public static com.sun.xml.ws.api.message.Header create(javax.xml.namespace.QName,java.lang.String)
-meth public static com.sun.xml.ws.api.message.Header create(javax.xml.soap.SOAPHeaderElement)
-meth public static com.sun.xml.ws.api.message.Header create(org.w3c.dom.Element)
-meth public static com.sun.xml.ws.api.message.Header createMustUnderstand(com.sun.xml.ws.api.SOAPVersion,javax.xml.namespace.QName,java.lang.String)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.NotNull()
-supr java.lang.Object
-
-CLSS public abstract com.sun.xml.ws.api.message.Message
-cons public init()
-fld protected com.sun.xml.ws.api.message.AttachmentSet attachmentSet
-meth protected boolean hasAttachments()
-meth public abstract <%0 extends java.lang.Object> {%%0} readPayloadAsJAXB(com.sun.xml.bind.api.Bridge<{%%0}>) throws javax.xml.bind.JAXBException
-meth public abstract <%0 extends java.lang.Object> {%%0} readPayloadAsJAXB(com.sun.xml.ws.spi.db.XMLBridge<{%%0}>) throws javax.xml.bind.JAXBException
-meth public abstract <%0 extends java.lang.Object> {%%0} readPayloadAsJAXB(javax.xml.bind.Unmarshaller) throws javax.xml.bind.JAXBException
-meth public abstract boolean hasHeaders()
-meth public abstract boolean hasPayload()
-meth public abstract com.sun.xml.ws.api.message.HeaderList getHeaders()
- anno 0 com.sun.istack.NotNull()
-meth public abstract com.sun.xml.ws.api.message.Message copy()
-meth public abstract java.lang.String getPayloadLocalPart()
- anno 0 com.sun.istack.Nullable()
-meth public abstract java.lang.String getPayloadNamespaceURI()
-meth public abstract javax.xml.soap.SOAPMessage readAsSOAPMessage() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.stream.XMLStreamReader readPayload() throws javax.xml.stream.XMLStreamException
-meth public abstract javax.xml.transform.Source readEnvelopeAsSource()
-meth public abstract javax.xml.transform.Source readPayloadAsSource()
-meth public abstract void writePayloadTo(javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeTo(javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeTo(org.xml.sax.ContentHandler,org.xml.sax.ErrorHandler) throws org.xml.sax.SAXException
-meth public boolean isFault()
-meth public boolean isOneWay(com.sun.xml.ws.api.model.wsdl.WSDLPort)
- anno 1 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.AttachmentSet getAttachments()
- anno 0 com.sun.istack.NotNull()
-meth public final com.sun.xml.ws.api.model.JavaMethod getMethod(com.sun.xml.ws.api.model.SEIModel)
- anno 0 com.sun.istack.Nullable()
- anno 0 java.lang.Deprecated()
- anno 1 com.sun.istack.NotNull()
-meth public final com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation getOperation(com.sun.xml.ws.api.model.wsdl.WSDLBoundPortType)
- anno 0 com.sun.istack.Nullable()
- anno 0 java.lang.Deprecated()
- anno 1 com.sun.istack.NotNull()
-meth public final com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation getOperation(com.sun.xml.ws.api.model.wsdl.WSDLPort)
- anno 0 com.sun.istack.Nullable()
- anno 0 java.lang.Deprecated()
- anno 1 com.sun.istack.NotNull()
-meth public final void assertOneWay(boolean)
-meth public java.lang.String getID(com.sun.xml.ws.api.WSBinding)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public java.lang.String getID(com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 0 com.sun.istack.NotNull()
-meth public javax.xml.namespace.QName getFirstDetailEntryName()
- anno 0 com.sun.istack.Nullable()
-meth public javax.xml.soap.SOAPMessage readAsSOAPMessage(com.sun.xml.ws.api.message.Packet,boolean) throws javax.xml.soap.SOAPException
-meth public static java.lang.String generateMessageID()
-meth public void consume()
-supr java.lang.Object
-hfds isOneWay,operation
-
-CLSS public abstract com.sun.xml.ws.api.message.Messages
-meth public static com.sun.xml.ws.api.message.Message create(com.sun.xml.stream.buffer.XMLStreamBuffer)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.message.Message create(com.sun.xml.ws.api.SOAPVersion,javax.xml.ws.ProtocolException,javax.xml.namespace.QName)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.Nullable()
-meth public static com.sun.xml.ws.api.message.Message create(java.lang.String,com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.message.Message create(java.lang.Throwable,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message create(javax.xml.bind.JAXBContext,java.lang.Object,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message create(javax.xml.bind.Marshaller,java.lang.Object,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message create(javax.xml.soap.SOAPFault)
-meth public static com.sun.xml.ws.api.message.Message create(javax.xml.soap.SOAPMessage)
-meth public static com.sun.xml.ws.api.message.Message create(javax.xml.stream.XMLStreamReader)
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
-meth public static com.sun.xml.ws.api.message.Message create(javax.xml.transform.Source,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message create(org.w3c.dom.Element)
-meth public static com.sun.xml.ws.api.message.Message createAddressingFaultMessage(com.sun.xml.ws.api.WSBinding,com.sun.xml.ws.api.message.Packet,javax.xml.namespace.QName)
-meth public static com.sun.xml.ws.api.message.Message createAddressingFaultMessage(com.sun.xml.ws.api.WSBinding,javax.xml.namespace.QName)
-meth public static com.sun.xml.ws.api.message.Message createEmpty(com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message createRaw(javax.xml.bind.JAXBContext,java.lang.Object,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message createUsingPayload(javax.xml.stream.XMLStreamReader,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message createUsingPayload(javax.xml.transform.Source,com.sun.xml.ws.api.SOAPVersion)
-meth public static com.sun.xml.ws.api.message.Message createUsingPayload(org.w3c.dom.Element,com.sun.xml.ws.api.SOAPVersion)
-supr java.lang.Object
-
-CLSS public final com.sun.xml.ws.api.message.Packet
-cons public init()
-cons public init(com.sun.xml.ws.api.message.Message)
-fld public boolean isAdapterDeliversNonAnonymousResponse
-fld public boolean wasTransportSecure
-fld public com.sun.xml.ws.api.Component component
-fld public com.sun.xml.ws.api.EndpointAddress endpointAddress
-fld public com.sun.xml.ws.api.server.TransportBackChannel transportBackChannel
- anno 0 com.sun.istack.Nullable()
-fld public com.sun.xml.ws.api.server.WSEndpoint endpoint
-fld public com.sun.xml.ws.api.server.WebServiceContextDelegate webServiceContextDelegate
-fld public com.sun.xml.ws.client.ContentNegotiation contentNegotiation
-fld public com.sun.xml.ws.client.HandlerConfiguration handlerConfig
-fld public final java.util.Map<java.lang.String,java.lang.Object> invocationProperties
-fld public final static java.lang.String HA_INFO = "com.sun.xml.ws.api.message.packet.hainfo"
-fld public final static java.lang.String INBOUND_TRANSPORT_HEADERS = "com.sun.xml.ws.api.message.packet.inbound.transport.headers"
-fld public final static java.lang.String OUTBOUND_TRANSPORT_HEADERS = "com.sun.xml.ws.api.message.packet.outbound.transport.headers"
-fld public java.lang.Boolean expectReply
-fld public java.lang.Boolean isOneWay
- anno 0 java.lang.Deprecated()
-fld public java.lang.Boolean isSynchronousMEP
-fld public java.lang.Boolean nonNullAsyncHandlerGiven
-fld public java.lang.String acceptableMimeTypes
-fld public java.lang.String soapAction
-fld public javax.xml.ws.BindingProvider proxy
-intf org.jvnet.ws.message.MessageContext
-meth protected com.sun.xml.ws.api.PropertySet$PropertyMap getPropertyMap()
-meth public com.sun.xml.ws.api.WSBinding getBinding()
-meth public com.sun.xml.ws.api.message.Message getMessage()
-meth public com.sun.xml.ws.api.message.Packet copy(boolean)
-meth public com.sun.xml.ws.api.message.Packet createClientResponse(com.sun.xml.ws.api.message.Message)
-meth public com.sun.xml.ws.api.message.Packet createResponse(com.sun.xml.ws.api.message.Message)
- anno 0 java.lang.Deprecated()
-meth public com.sun.xml.ws.api.message.Packet createServerResponse(com.sun.xml.ws.api.message.Message,com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion,java.lang.String)
- anno 1 com.sun.istack.Nullable()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.NotNull()
- anno 4 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Packet createServerResponse(com.sun.xml.ws.api.message.Message,com.sun.xml.ws.api.model.wsdl.WSDLPort,com.sun.xml.ws.api.model.SEIModel,com.sun.xml.ws.api.WSBinding)
- anno 1 com.sun.istack.Nullable()
- anno 2 com.sun.istack.Nullable()
- anno 3 com.sun.istack.Nullable()
- anno 4 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.message.Packet relateServerResponse(com.sun.xml.ws.api.message.Packet,com.sun.xml.ws.api.model.wsdl.WSDLPort,com.sun.xml.ws.api.model.SEIModel,com.sun.xml.ws.api.WSBinding)
- anno 1 com.sun.istack.Nullable()
- anno 2 com.sun.istack.Nullable()
- anno 3 com.sun.istack.Nullable()
- anno 4 com.sun.istack.NotNull()
-meth public com.sun.xml.ws.api.server.TransportBackChannel keepTransportBackChannelOpen()
-meth public final java.util.Set<java.lang.String> getApplicationScopePropertyNames(boolean)
-meth public final java.util.Set<java.lang.String> getHandlerScopePropertyNames(boolean)
-meth public final javax.xml.namespace.QName getWSDLOperation()
- anno 0 com.sun.istack.Nullable()
-meth public java.lang.String getContentNegotiationString()
-meth public java.lang.String getEndPointAddressString()
-meth public java.lang.String toShortString()
-meth public java.lang.String toString()
-meth public java.util.List<org.w3c.dom.Element> getReferenceParameters()
- anno 0 com.sun.istack.NotNull()
-meth public javax.xml.soap.SOAPMessage getSOAPMessage() throws javax.xml.soap.SOAPException
-meth public void setContentNegotiationString(java.lang.String)
-meth public void setEndPointAddressString(java.lang.String)
-meth public void setMessage(com.sun.xml.ws.api.message.Message)
-meth public void setResponseMessage(com.sun.xml.ws.api.message.Packet,com.sun.xml.ws.api.message.Message,com.sun.xml.ws.api.addressing.AddressingVersion,com.sun.xml.ws.api.SOAPVersion,java.lang.String)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.Nullable()
- anno 3 com.sun.istack.NotNull()
- anno 4 com.sun.istack.NotNull()
- anno 5 com.sun.istack.NotNull()
-meth public void setWSDLOperation(javax.xml.namespace.QName)
-supr com.sun.xml.ws.api.DistributedPropertySet
-hfds LOGGER,handlerScopePropertyNames,message,model,wsdlOperation
-
-CLSS public com.sun.xml.ws.api.message.SuppressAutomaticWSARequestHeadersFeature
-cons public init()
-meth public java.lang.String getID()
-supr javax.xml.ws.WebServiceFeature
-
-CLSS abstract interface com.sun.xml.ws.api.message.package-info
-
-CLSS public abstract interface com.sun.xml.ws.api.model.wsdl.WSDLExtension
-meth public abstract javax.xml.namespace.QName getName()
-
-CLSS abstract interface com.sun.xml.ws.api.package-info
-
-CLSS public abstract interface !annotation com.sun.xml.ws.api.server.InstanceResolverAnnotation
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.Class<? extends com.sun.xml.ws.api.server.InstanceResolver> value()
-
-CLSS public abstract com.sun.xml.ws.api.streaming.XMLStreamReaderFactory
-cons public init()
-innr public abstract interface static RecycleAware
-innr public final static Default
-innr public final static Woodstox
-innr public final static Zephyr
-innr public static NoLock
-meth public abstract javax.xml.stream.XMLStreamReader doCreate(java.lang.String,java.io.InputStream,boolean)
-meth public abstract javax.xml.stream.XMLStreamReader doCreate(java.lang.String,java.io.Reader,boolean)
-meth public abstract void doRecycle(javax.xml.stream.XMLStreamReader)
-meth public static com.sun.xml.ws.api.streaming.XMLStreamReaderFactory get()
-meth public static javax.xml.stream.XMLStreamReader create(java.lang.String,java.io.InputStream,boolean)
- anno 1 com.sun.istack.Nullable()
-meth public static javax.xml.stream.XMLStreamReader create(java.lang.String,java.io.InputStream,java.lang.String,boolean)
- anno 1 com.sun.istack.Nullable()
- anno 3 com.sun.istack.Nullable()
-meth public static javax.xml.stream.XMLStreamReader create(java.lang.String,java.io.Reader,boolean)
- anno 1 com.sun.istack.Nullable()
-meth public static javax.xml.stream.XMLStreamReader create(org.xml.sax.InputSource,boolean)
-meth public static void recycle(javax.xml.stream.XMLStreamReader)
-meth public static void set(com.sun.xml.ws.api.streaming.XMLStreamReaderFactory)
-supr java.lang.Object
-hfds LOGGER,theInstance
-
-CLSS public abstract interface static com.sun.xml.ws.api.streaming.XMLStreamReaderFactory$RecycleAware
- outer com.sun.xml.ws.api.streaming.XMLStreamReaderFactory
-meth public abstract void onRecycled()
-
-CLSS public abstract com.sun.xml.ws.api.streaming.XMLStreamWriterFactory
-cons public init()
-innr public abstract interface static RecycleAware
-innr public final static Default
-innr public final static NoLock
-innr public final static Zephyr
-meth public abstract javax.xml.stream.XMLStreamWriter doCreate(java.io.OutputStream)
-meth public abstract javax.xml.stream.XMLStreamWriter doCreate(java.io.OutputStream,java.lang.String)
-meth public abstract void doRecycle(javax.xml.stream.XMLStreamWriter)
-meth public static com.sun.xml.ws.api.streaming.XMLStreamWriterFactory get()
- anno 0 com.sun.istack.NotNull()
-meth public static javax.xml.stream.XMLStreamWriter create(java.io.OutputStream)
-meth public static javax.xml.stream.XMLStreamWriter create(java.io.OutputStream,java.lang.String)
-meth public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(java.io.OutputStream)
-meth public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(java.io.OutputStream,java.lang.String)
-meth public static javax.xml.stream.XMLStreamWriter createXMLStreamWriter(java.io.OutputStream,java.lang.String,boolean)
-meth public static void recycle(javax.xml.stream.XMLStreamWriter)
-meth public static void set(com.sun.xml.ws.api.streaming.XMLStreamWriterFactory)
- anno 1 com.sun.istack.NotNull()
-supr java.lang.Object
-hfds LOGGER,theInstance
-hcls HasEncodingWriter
-
-CLSS public abstract interface static com.sun.xml.ws.api.streaming.XMLStreamWriterFactory$RecycleAware
- outer com.sun.xml.ws.api.streaming.XMLStreamWriterFactory
-meth public abstract void onRecycled()
-
-CLSS public final com.sun.xml.ws.developer.BindingTypeFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init(java.lang.String)
-fld public final static java.lang.String ID = "http://jax-ws.dev.java.net/features/binding"
-meth public java.lang.String getBindingId()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-supr javax.xml.ws.WebServiceFeature
-hfds bindingId
-
-CLSS public final com.sun.xml.ws.developer.EPRRecipe
-cons public init()
-meth public !varargs com.sun.xml.ws.developer.EPRRecipe addMetadata(javax.xml.transform.Source[])
-meth public !varargs com.sun.xml.ws.developer.EPRRecipe addReferenceParameters(com.sun.xml.ws.api.message.Header[])
-meth public com.sun.xml.ws.developer.EPRRecipe addMetadata(java.lang.Iterable<? extends javax.xml.transform.Source>)
-meth public com.sun.xml.ws.developer.EPRRecipe addMetadata(javax.xml.transform.Source)
-meth public com.sun.xml.ws.developer.EPRRecipe addReferenceParameter(com.sun.xml.ws.api.message.Header)
-meth public com.sun.xml.ws.developer.EPRRecipe addReferenceParameters(java.lang.Iterable<? extends com.sun.xml.ws.api.message.Header>)
-meth public java.util.List<com.sun.xml.ws.api.message.Header> getReferenceParameters()
- anno 0 com.sun.istack.NotNull()
-meth public java.util.List<javax.xml.transform.Source> getMetadata()
- anno 0 com.sun.istack.NotNull()
-supr java.lang.Object
-hfds metadata,referenceParameters
-
-CLSS public final com.sun.xml.ws.developer.HttpConfigFeature
-cons public init()
-cons public init(java.net.CookieHandler)
-fld public final static java.lang.String ID = "http://jax-ws.java.net/features/http-config"
-meth public java.lang.String getID()
-meth public java.net.CookieHandler getCookieHandler()
-supr javax.xml.ws.WebServiceFeature
-hfds cookieJar,cookieManagerConstructor,cookiePolicy
-
-CLSS public abstract interface com.sun.xml.ws.developer.JAXBContextFactory
-fld public final static com.sun.xml.ws.developer.JAXBContextFactory DEFAULT
-meth public abstract com.sun.xml.bind.api.JAXBRIContext createJAXBContext(com.sun.xml.ws.api.model.SEIModel,java.util.List<java.lang.Class>,java.util.List<com.sun.xml.bind.api.TypeReference>) throws javax.xml.bind.JAXBException
- anno 0 com.sun.istack.NotNull()
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
- anno 3 com.sun.istack.NotNull()
-
-CLSS public abstract interface com.sun.xml.ws.developer.JAXWSProperties
-fld public final static java.lang.String ADDRESSING_ACTION = "com.sun.xml.ws.api.addressing.action"
-fld public final static java.lang.String ADDRESSING_FROM = "com.sun.xml.ws.api.addressing.from"
-fld public final static java.lang.String ADDRESSING_MESSAGEID = "com.sun.xml.ws.api.addressing.messageId"
-fld public final static java.lang.String ADDRESSING_TO = "com.sun.xml.ws.api.addressing.to"
-fld public final static java.lang.String CONNECT_TIMEOUT = "com.sun.xml.ws.connect.timeout"
-fld public final static java.lang.String CONTENT_NEGOTIATION_PROPERTY = "com.sun.xml.ws.client.ContentNegotiation"
- anno 0 java.lang.Deprecated()
-fld public final static java.lang.String HOSTNAME_VERIFIER = "com.sun.xml.ws.transport.https.client.hostname.verifier"
-fld public final static java.lang.String HTTP_CLIENT_STREAMING_CHUNK_SIZE = "com.sun.xml.ws.transport.http.client.streaming.chunk.size"
-fld public final static java.lang.String HTTP_EXCHANGE = "com.sun.xml.ws.http.exchange"
-fld public final static java.lang.String HTTP_REQUEST_URL = "com.sun.xml.ws.transport.http.servlet.requestURL"
-fld public final static java.lang.String INBOUND_HEADER_LIST_PROPERTY = "com.sun.xml.ws.api.message.HeaderList"
-fld public final static java.lang.String MTOM_THRESHOLOD_VALUE = "com.sun.xml.ws.common.MtomThresholdValue"
-fld public final static java.lang.String REQUEST_TIMEOUT = "com.sun.xml.ws.request.timeout"
-fld public final static java.lang.String REST_BINDING = "http://jax-ws.dev.java.net/rest"
-fld public final static java.lang.String SSL_SOCKET_FACTORY = "com.sun.xml.ws.transport.https.client.SSLSocketFactory"
-fld public final static java.lang.String WSENDPOINT = "com.sun.xml.ws.api.server.WSEndpoint"
-
-CLSS public abstract interface !annotation com.sun.xml.ws.developer.MemberSubmissionAddressing
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
- anno 0 javax.xml.ws.spi.WebServiceFeatureAnnotation(java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean=class com.sun.xml.ws.developer.MemberSubmissionAddressingFeature, java.lang.String id="http://java.sun.com/xml/ns/jaxws/2004/08/addressing")
-innr public final static !enum Validation
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault boolean enabled()
-meth public abstract !hasdefault boolean required()
-meth public abstract !hasdefault com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation validation()
-
-CLSS public final static !enum com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation
- outer com.sun.xml.ws.developer.MemberSubmissionAddressing
-fld public final static com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation LAX
-fld public final static com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation STRICT
-meth public static com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation valueOf(java.lang.String)
-meth public static com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation[] values()
-supr java.lang.Enum<com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation>
-
-CLSS public com.sun.xml.ws.developer.MemberSubmissionAddressingFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init()
-cons public init(boolean)
-cons public init(boolean,boolean)
-cons public init(boolean,boolean,com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation)
-fld public final static java.lang.String ID = "http://java.sun.com/xml/ns/jaxws/2004/08/addressing"
-fld public final static java.lang.String IS_REQUIRED = "ADDRESSING_IS_REQUIRED"
-meth public boolean isRequired()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation getValidation()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public void setRequired(boolean)
-meth public void setValidation(com.sun.xml.ws.developer.MemberSubmissionAddressing$Validation)
-supr javax.xml.ws.WebServiceFeature
-hfds required,validation
-
-CLSS public final com.sun.xml.ws.developer.MemberSubmissionEndpointReference
-cons public init()
-cons public init(javax.xml.transform.Source)
- anno 1 com.sun.istack.NotNull()
-fld protected final static java.lang.String MSNS = "http://schemas.xmlsoap.org/ws/2004/08/addressing"
-fld public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address addr
-fld public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$AttributedQName portTypeName
-fld public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements referenceParameters
-fld public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements referenceProperties
-fld public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$ServiceNameType serviceName
-fld public java.util.List<org.w3c.dom.Element> elements
-fld public java.util.Map<javax.xml.namespace.QName,java.lang.String> attributes
-innr public static Address
-innr public static AttributedQName
-innr public static Elements
-innr public static ServiceNameType
-intf com.sun.xml.ws.addressing.v200408.MemberSubmissionAddressingConstants
-meth public javax.xml.transform.Source toWSDLSource()
-meth public void writeTo(javax.xml.transform.Result)
-supr javax.xml.ws.EndpointReference
-hfds msjc
-
-CLSS public static com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address
- outer com.sun.xml.ws.developer.MemberSubmissionEndpointReference
-cons public init()
-fld public java.lang.String uri
-fld public java.util.Map<javax.xml.namespace.QName,java.lang.String> attributes
-supr java.lang.Object
-
-CLSS public static com.sun.xml.ws.developer.MemberSubmissionEndpointReference$AttributedQName
- outer com.sun.xml.ws.developer.MemberSubmissionEndpointReference
-cons public init()
-fld public java.util.Map<javax.xml.namespace.QName,java.lang.String> attributes
-fld public javax.xml.namespace.QName name
-supr java.lang.Object
-
-CLSS public static com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements
- outer com.sun.xml.ws.developer.MemberSubmissionEndpointReference
-cons public init()
-fld public java.util.List<org.w3c.dom.Element> elements
-supr java.lang.Object
-
-CLSS public static com.sun.xml.ws.developer.MemberSubmissionEndpointReference$ServiceNameType
- outer com.sun.xml.ws.developer.MemberSubmissionEndpointReference
-cons public init()
-fld public java.lang.String portName
-supr com.sun.xml.ws.developer.MemberSubmissionEndpointReference$AttributedQName
-
-CLSS public abstract interface !annotation com.sun.xml.ws.developer.SchemaValidation
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
- anno 0 javax.xml.ws.spi.WebServiceFeatureAnnotation(java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean=class com.sun.xml.ws.developer.SchemaValidationFeature, java.lang.String id="http://jax-ws.dev.java.net/features/schema-validation")
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault boolean inbound()
-meth public abstract !hasdefault boolean outbound()
-meth public abstract !hasdefault java.lang.Class<? extends com.sun.xml.ws.developer.ValidationErrorHandler> handler()
-
-CLSS public com.sun.xml.ws.developer.SchemaValidationFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init()
-cons public init(boolean,boolean)
-cons public init(boolean,boolean,java.lang.Class<? extends com.sun.xml.ws.developer.ValidationErrorHandler>)
-cons public init(java.lang.Class<? extends com.sun.xml.ws.developer.ValidationErrorHandler>)
-fld public final static java.lang.String ID = "http://jax-ws.dev.java.net/features/schema-validation"
-meth public boolean isInbound()
-meth public boolean isOutbound()
-meth public java.lang.Class<? extends com.sun.xml.ws.developer.ValidationErrorHandler> getErrorHandler()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-supr javax.xml.ws.WebServiceFeature
-hfds clazz,inbound,outbound
-
-CLSS public abstract interface !annotation com.sun.xml.ws.developer.Serialization
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
- anno 0 javax.xml.ws.spi.WebServiceFeatureAnnotation(java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean=class com.sun.xml.ws.developer.SerializationFeature, java.lang.String id="http://jax-ws.java.net/features/serialization")
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String encoding()
-
-CLSS public com.sun.xml.ws.developer.SerializationFeature
-cons public init()
-cons public init(java.lang.String)
-fld public final static java.lang.String ID = "http://jax-ws.java.net/features/serialization"
-meth public java.lang.String getEncoding()
-meth public java.lang.String getID()
-supr javax.xml.ws.WebServiceFeature
-hfds encoding
-
-CLSS public com.sun.xml.ws.developer.ServerSideException
-cons public init(java.lang.String,java.lang.String)
-meth public java.lang.String getMessage()
-meth public java.lang.String toString()
-supr java.lang.Exception
-hfds className
-
-CLSS public abstract interface !annotation com.sun.xml.ws.developer.Stateful
- anno 0 com.sun.xml.ws.api.server.InstanceResolverAnnotation(java.lang.Class<? extends com.sun.xml.ws.api.server.InstanceResolver> value=class com.sun.xml.ws.server.StatefulInstanceResolver)
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
- anno 0 javax.xml.ws.spi.WebServiceFeatureAnnotation(java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean=class com.sun.xml.ws.developer.StatefulFeature, java.lang.String id="http://jax-ws.dev.java.net/features/stateful")
-intf java.lang.annotation.Annotation
-
-CLSS public com.sun.xml.ws.developer.StatefulFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init()
-fld public final static java.lang.String ID = "http://jax-ws.dev.java.net/features/stateful"
-intf com.sun.xml.ws.api.ha.StickyFeature
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-supr javax.xml.ws.WebServiceFeature
-
-CLSS public abstract interface com.sun.xml.ws.developer.StatefulWebServiceManager<%0 extends java.lang.Object>
-innr public abstract interface static Callback
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} export(java.lang.Class<{%%0}>,com.sun.xml.ws.api.message.Packet,{com.sun.xml.ws.developer.StatefulWebServiceManager%0})
- anno 0 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} export(java.lang.Class<{%%0}>,com.sun.xml.ws.api.message.Packet,{com.sun.xml.ws.developer.StatefulWebServiceManager%0},com.sun.xml.ws.developer.EPRRecipe)
- anno 0 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} export(java.lang.Class<{%%0}>,java.lang.String,{com.sun.xml.ws.developer.StatefulWebServiceManager%0})
- anno 0 com.sun.istack.NotNull()
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} export(java.lang.Class<{%%0}>,javax.xml.ws.WebServiceContext,{com.sun.xml.ws.developer.StatefulWebServiceManager%0})
- anno 0 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} export(java.lang.Class<{%%0}>,{com.sun.xml.ws.developer.StatefulWebServiceManager%0})
- anno 0 com.sun.istack.NotNull()
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} export(java.lang.Class<{%%0}>,{com.sun.xml.ws.developer.StatefulWebServiceManager%0},com.sun.xml.ws.developer.EPRRecipe)
- anno 0 com.sun.istack.NotNull()
- anno 3 com.sun.istack.Nullable()
-meth public abstract javax.xml.ws.wsaddressing.W3CEndpointReference export({com.sun.xml.ws.developer.StatefulWebServiceManager%0})
- anno 0 com.sun.istack.NotNull()
-meth public abstract void setFallbackInstance({com.sun.xml.ws.developer.StatefulWebServiceManager%0})
-meth public abstract void setTimeout(long,com.sun.xml.ws.developer.StatefulWebServiceManager$Callback<{com.sun.xml.ws.developer.StatefulWebServiceManager%0}>)
- anno 2 com.sun.istack.Nullable()
-meth public abstract void touch({com.sun.xml.ws.developer.StatefulWebServiceManager%0})
-meth public abstract void unexport({com.sun.xml.ws.developer.StatefulWebServiceManager%0})
- anno 1 com.sun.istack.Nullable()
-meth public abstract {com.sun.xml.ws.developer.StatefulWebServiceManager%0} resolve(javax.xml.ws.EndpointReference)
- anno 0 com.sun.istack.Nullable()
- anno 1 com.sun.istack.NotNull()
-
-CLSS public abstract interface static com.sun.xml.ws.developer.StatefulWebServiceManager$Callback<%0 extends java.lang.Object>
- outer com.sun.xml.ws.developer.StatefulWebServiceManager
-meth public abstract void onTimeout({com.sun.xml.ws.developer.StatefulWebServiceManager$Callback%0},com.sun.xml.ws.developer.StatefulWebServiceManager<{com.sun.xml.ws.developer.StatefulWebServiceManager$Callback%0}>)
- anno 1 com.sun.istack.NotNull()
- anno 2 com.sun.istack.NotNull()
-
-CLSS public abstract interface !annotation com.sun.xml.ws.developer.StreamingAttachment
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
- anno 0 javax.xml.ws.spi.WebServiceFeatureAnnotation(java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean=class com.sun.xml.ws.developer.StreamingAttachmentFeature, java.lang.String id="http://jax-ws.dev.java.net/features/mime")
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault boolean parseEagerly()
-meth public abstract !hasdefault java.lang.String dir()
-meth public abstract !hasdefault long memoryThreshold()
-
-CLSS public final com.sun.xml.ws.developer.StreamingAttachmentFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init()
-cons public init(java.lang.String,boolean,long)
- anno 1 com.sun.istack.Nullable()
-fld public final static java.lang.String ID = "http://jax-ws.dev.java.net/features/mime"
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public org.jvnet.mimepull.MIMEConfig getConfig()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public void setDir(java.lang.String)
-meth public void setMemoryThreshold(long)
-meth public void setParseEagerly(boolean)
-supr javax.xml.ws.WebServiceFeature
-hfds config,dir,memoryThreshold,parseEagerly
-
-CLSS public abstract com.sun.xml.ws.developer.StreamingDataHandler
-cons public init(java.lang.Object,java.lang.String)
-cons public init(java.net.URL)
-cons public init(javax.activation.DataSource)
-supr org.jvnet.staxex.StreamingDataHandler
-
-CLSS public abstract interface !annotation com.sun.xml.ws.developer.UsesJAXBContext
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
- anno 0 javax.xml.ws.spi.WebServiceFeatureAnnotation(java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean=class com.sun.xml.ws.developer.UsesJAXBContextFeature, java.lang.String id="http://jax-ws.dev.java.net/features/uses-jaxb-context")
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.Class<? extends com.sun.xml.ws.developer.JAXBContextFactory> value()
-
-CLSS public com.sun.xml.ws.developer.UsesJAXBContextFeature
- anno 0 org.glassfish.gmbal.ManagedData(java.lang.String name="")
-cons public init(com.sun.xml.bind.api.JAXBRIContext)
- anno 1 com.sun.istack.Nullable()
-cons public init(com.sun.xml.ws.developer.JAXBContextFactory)
- anno 1 com.sun.istack.Nullable()
-cons public init(java.lang.Class<? extends com.sun.xml.ws.developer.JAXBContextFactory>)
- anno 1 com.sun.istack.NotNull()
-fld public final static java.lang.String ID = "http://jax-ws.dev.java.net/features/uses-jaxb-context"
-meth public com.sun.xml.ws.developer.JAXBContextFactory getFactory()
- anno 0 com.sun.istack.Nullable()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-meth public java.lang.String getID()
- anno 0 org.glassfish.gmbal.ManagedAttribute(java.lang.String id="")
-supr javax.xml.ws.WebServiceFeature
-hfds factory
-
-CLSS public abstract com.sun.xml.ws.developer.ValidationErrorHandler
-cons public init()
-fld protected com.sun.xml.ws.api.message.Packet packet
-intf org.xml.sax.ErrorHandler
-meth public void setPacket(com.sun.xml.ws.api.message.Packet)
-supr java.lang.Object
-
-CLSS public abstract interface com.sun.xml.ws.developer.WSBindingProvider
-intf com.sun.xml.ws.api.ComponentRegistry
-intf java.io.Closeable
-intf javax.xml.ws.BindingProvider
-meth public abstract !varargs void setOutboundHeaders(com.sun.xml.ws.api.message.Header[])
-meth public abstract !varargs void setOutboundHeaders(java.lang.Object[])
-meth public abstract com.sun.xml.ws.api.addressing.WSEndpointReference getWSEndpointReference()
-meth public abstract com.sun.xml.ws.api.client.WSPortInfo getPortInfo()
-meth public abstract java.util.List<com.sun.xml.ws.api.message.Header> getInboundHeaders()
-meth public abstract org.glassfish.gmbal.ManagedObjectManager getManagedObjectManager()
- anno 0 com.sun.istack.NotNull()
-meth public abstract void setAddress(java.lang.String)
-meth public abstract void setOutboundHeaders(java.util.List<com.sun.xml.ws.api.message.Header>)
-
-CLSS abstract interface com.sun.xml.ws.developer.package-info
-
-CLSS public com.sun.xml.ws.encoding.soap.DeserializationException
-cons public !varargs init(java.lang.String,java.lang.Object[])
-cons public init(com.sun.xml.ws.util.localization.Localizable)
-cons public init(java.lang.Throwable)
-meth public java.lang.String getDefaultResourceBundleName()
-supr com.sun.xml.ws.util.exception.JAXWSExceptionBase
-
-CLSS public com.sun.xml.ws.encoding.soap.SOAP12Constants
-cons public init()
-fld public final static java.lang.String URI_ENCODING = "http://schemas.xmlsoap.org/soap/encoding/"
-fld public final static java.lang.String URI_ENVELOPE = "http://www.w3.org/2003/05/soap-envelope"
-fld public final static java.lang.String URI_HTTP = "http://www.w3.org/2003/05/soap/bindings/HTTP/"
-fld public final static java.lang.String URI_SOAP_RPC = "http://www.w3.org/2002/06/soap-rpc"
-fld public final static javax.xml.namespace.QName FAULT_CODE_BAD_ARGUMENTS
-fld public final static javax.xml.namespace.QName FAULT_CODE_DATA_ENCODING_UNKNOWN
-fld public final static javax.xml.namespace.QName FAULT_CODE_MISUNDERSTOOD
-fld public final static javax.xml.namespace.QName FAULT_CODE_MUST_UNDERSTAND
-fld public final static javax.xml.namespace.QName FAULT_CODE_PROCEDURE_NOT_PRESENT
-fld public final static javax.xml.namespace.QName FAULT_CODE_VERSION_MISMATCH
-fld public final static javax.xml.namespace.QName QNAME_ENVELOPE_ENCODINGSTYLE
-fld public final static javax.xml.namespace.QName QNAME_FAULT_CODE
-fld public final static javax.xml.namespace.QName QNAME_FAULT_DETAIL
-fld public final static javax.xml.namespace.QName QNAME_FAULT_NODE
-fld public final static javax.xml.namespace.QName QNAME_FAULT_REASON
-fld public final static javax.xml.namespace.QName QNAME_FAULT_REASON_TEXT
-fld public final static javax.xml.namespace.QName QNAME_FAULT_ROLE
-fld public final static javax.xml.namespace.QName QNAME_FAULT_SUBCODE
-fld public final static javax.xml.namespace.QName QNAME_FAULT_VALUE
-fld public final static javax.xml.namespace.QName QNAME_MUSTUNDERSTAND
-fld public final static javax.xml.namespace.QName QNAME_NOT_UNDERSTOOD
-fld public final static javax.xml.namespace.QName QNAME_ROLE
-fld public final static javax.xml.namespace.QName QNAME_SOAP_BODY
-fld public final static javax.xml.namespace.QName QNAME_SOAP_ENVELOPE
-fld public final static javax.xml.namespace.QName QNAME_SOAP_FAULT
-fld public final static javax.xml.namespace.QName QNAME_SOAP_HEADER
-fld public final static javax.xml.namespace.QName QNAME_SOAP_RESULT
-fld public final static javax.xml.namespace.QName QNAME_SOAP_RPC
-fld public final static javax.xml.namespace.QName QNAME_UPGRADE
-fld public final static javax.xml.namespace.QName QNAME_UPGRADE_SUPPORTED_ENVELOPE
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.encoding.soap.SOAPConstants
-cons public init()
-fld public final static java.lang.String NS_WSDL_SOAP = "http://schemas.xmlsoap.org/wsdl/soap/"
-fld public final static java.lang.String URI_ENCODING = "http://schemas.xmlsoap.org/soap/encoding/"
-fld public final static java.lang.String URI_ENVELOPE = "http://schemas.xmlsoap.org/soap/envelope/"
-fld public final static java.lang.String URI_HTTP = "http://schemas.xmlsoap.org/soap/http"
-fld public final static javax.xml.namespace.QName FAULT_CODE_BAD_ARGUMENTS
-fld public final static javax.xml.namespace.QName FAULT_CODE_DATA_ENCODING_UNKNOWN
-fld public final static javax.xml.namespace.QName FAULT_CODE_MUST_UNDERSTAND
-fld public final static javax.xml.namespace.QName FAULT_CODE_PROCEDURE_NOT_PRESENT
-fld public final static javax.xml.namespace.QName FAULT_CODE_VERSION_MISMATCH
-fld public final static javax.xml.namespace.QName QNAME_ENVELOPE_ENCODINGSTYLE
-fld public final static javax.xml.namespace.QName QNAME_MUSTUNDERSTAND
-fld public final static javax.xml.namespace.QName QNAME_ROLE
-fld public final static javax.xml.namespace.QName QNAME_SOAP_BODY
-fld public final static javax.xml.namespace.QName QNAME_SOAP_ENVELOPE
-fld public final static javax.xml.namespace.QName QNAME_SOAP_FAULT
-fld public final static javax.xml.namespace.QName QNAME_SOAP_FAULT_ACTOR
-fld public final static javax.xml.namespace.QName QNAME_SOAP_FAULT_CODE
-fld public final static javax.xml.namespace.QName QNAME_SOAP_FAULT_DETAIL
-fld public final static javax.xml.namespace.QName QNAME_SOAP_FAULT_STRING
-fld public final static javax.xml.namespace.QName QNAME_SOAP_HEADER
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.encoding.soap.SerializationException
-cons public !varargs init(java.lang.String,java.lang.Object[])
-cons public init(com.sun.xml.ws.util.localization.Localizable)
-cons public init(java.lang.Throwable)
-meth public java.lang.String getDefaultResourceBundleName()
-supr com.sun.xml.ws.util.exception.JAXWSExceptionBase
-
-CLSS public abstract interface com.sun.xml.ws.encoding.soap.SerializerConstants
-fld public final static boolean DONT_ENCODE_TYPE = false
-fld public final static boolean DONT_SERIALIZE_AS_REF = false
-fld public final static boolean ENCODE_TYPE = true
-fld public final static boolean NOT_NULLABLE = false
-fld public final static boolean NOT_REFERENCEABLE = false
-fld public final static boolean NULLABLE = true
-fld public final static boolean REFERENCEABLE = true
-fld public final static boolean REFERENCED_INSTANCE = true
-fld public final static boolean SERIALIZE_AS_REF = true
-fld public final static boolean UNREFERENCED_INSTANCE = false
-
-CLSS public com.sun.xml.ws.encoding.soap.streaming.SOAP12NamespaceConstants
-cons public init()
-fld public final static java.lang.String ACTOR_NEXT = "http://www.w3.org/2003/05/soap-envelope/role/next"
-fld public final static java.lang.String ATTR_ACTOR = "role"
-fld public final static java.lang.String ATTR_ENCODING_STYLE = "encodingStyle"
-fld public final static java.lang.String ATTR_MISUNDERSTOOD = "missUnderstood"
-fld public final static java.lang.String ATTR_MUST_UNDERSTAND = "mustUnderstand"
-fld public final static java.lang.String ATTR_NOT_UNDERSTOOD_QNAME = "qname"
-fld public final static java.lang.String ENCODING = "http://www.w3.org/2003/05/soap-encoding"
-fld public final static java.lang.String ENVELOPE = "http://www.w3.org/2003/05/soap-envelope"
-fld public final static java.lang.String ROLE_NEXT = "http://www.w3.org/2003/05/soap-envelope/role/next"
-fld public final static java.lang.String ROLE_NONE = "http://www.w3.org/2003/05/soap-envelope/role/none"
-fld public final static java.lang.String ROLE_ULTIMATE_RECEIVER = "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver"
-fld public final static java.lang.String SOAP_RPC = "http://www.w3.org/2002/06/soap-rpc"
-fld public final static java.lang.String SOAP_UPGRADE = "http://www.w3.org/2002/06/soap-upgrade"
-fld public final static java.lang.String TAG_BODY = "Body"
-fld public final static java.lang.String TAG_ENVELOPE = "Envelope"
-fld public final static java.lang.String TAG_HEADER = "Header"
-fld public final static java.lang.String TAG_NOT_UNDERSTOOD = "NotUnderstood"
-fld public final static java.lang.String TAG_RESULT = "result"
-fld public final static java.lang.String TRANSPORT_HTTP = "http://www.w3.org/2003/05/soap/bindings/HTTP/"
-fld public final static java.lang.String XML_NS = "http://www.w3.org/XML/1998/namespace"
-fld public final static java.lang.String XSD = "http://www.w3.org/2001/XMLSchema"
-fld public final static java.lang.String XSI = "http://www.w3.org/2001/XMLSchema-instance"
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.encoding.soap.streaming.SOAPNamespaceConstants
-cons public init()
-fld public final static java.lang.String ACTOR_NEXT = "http://schemas.xmlsoap.org/soap/actor/next"
-fld public final static java.lang.String ATTR_ACTOR = "actor"
-fld public final static java.lang.String ATTR_ENCODING_STYLE = "encodingStyle"
-fld public final static java.lang.String ATTR_MUST_UNDERSTAND = "mustUnderstand"
-fld public final static java.lang.String ENCODING = "http://schemas.xmlsoap.org/soap/encoding/"
-fld public final static java.lang.String ENVELOPE = "http://schemas.xmlsoap.org/soap/envelope/"
-fld public final static java.lang.String NSPREFIX_SOAP_ENVELOPE = "soapenv"
-fld public final static java.lang.String TAG_BODY = "Body"
-fld public final static java.lang.String TAG_ENVELOPE = "Envelope"
-fld public final static java.lang.String TAG_FAULT = "Fault"
-fld public final static java.lang.String TAG_HEADER = "Header"
-fld public final static java.lang.String TRANSPORT_HTTP = "http://schemas.xmlsoap.org/soap/http"
-fld public final static java.lang.String XMLNS = "http://www.w3.org/XML/1998/namespace"
-fld public final static java.lang.String XSD = "http://www.w3.org/2001/XMLSchema"
-fld public final static java.lang.String XSI = "http://www.w3.org/2001/XMLSchema-instance"
-supr java.lang.Object
-
-CLSS abstract interface com.sun.xml.ws.package-info
-
-CLSS public final !enum com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion v1_2
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion v1_5
-meth public java.lang.String getDefaultNamespacePrefix()
-meth public java.lang.String toString()
-meth public javax.xml.namespace.QName asQName(com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken)
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion getLatestVersion()
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion resolveVersion(java.lang.String)
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion resolveVersion(javax.xml.namespace.QName)
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion valueOf(java.lang.String)
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion[] values()
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken resolveAsToken(javax.xml.namespace.QName)
-supr java.lang.Enum<com.sun.xml.ws.policy.sourcemodel.wspolicy.NamespaceVersion>
-hfds defaultNsPrefix,nsUri,tokenToQNameCache
-
-CLSS public final !enum com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken All
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken Digest
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken DigestAlgorithm
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken ExactlyOne
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken Ignorable
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken Name
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken Optional
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken Policy
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken PolicyReference
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken PolicyUris
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken UNKNOWN
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken Uri
-fld public final static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken UsingPolicy
-meth public boolean isElement()
-meth public java.lang.String toString()
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken resolveToken(java.lang.String)
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken valueOf(java.lang.String)
-meth public static com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken[] values()
-supr java.lang.Enum<com.sun.xml.ws.policy.sourcemodel.wspolicy.XmlToken>
-hfds element,tokenName
-
-CLSS public com.sun.xml.ws.spi.ProviderImpl
-cons public init()
-fld public final static com.sun.xml.ws.spi.ProviderImpl INSTANCE
-meth public !varargs <%0 extends java.lang.Object> {%%0} getPort(javax.xml.ws.EndpointReference,java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.Endpoint createAndPublishEndpoint(java.lang.String,java.lang.Object,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Class,javax.xml.ws.spi.Invoker,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Object,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.spi.ServiceDelegate createServiceDelegate(java.net.URL,javax.xml.namespace.QName,java.lang.Class,javax.xml.ws.WebServiceFeature[])
-meth public javax.xml.ws.Endpoint createAndPublishEndpoint(java.lang.String,java.lang.Object)
-meth public javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Object)
-meth public javax.xml.ws.EndpointReference readEndpointReference(javax.xml.transform.Source)
-meth public javax.xml.ws.spi.ServiceDelegate createServiceDelegate(java.net.URL,javax.xml.namespace.QName,java.lang.Class)
-meth public javax.xml.ws.spi.ServiceDelegate createServiceDelegate(javax.xml.transform.Source,javax.xml.namespace.QName,java.lang.Class)
-meth public javax.xml.ws.wsaddressing.W3CEndpointReference createW3CEndpointReference(java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>)
-meth public javax.xml.ws.wsaddressing.W3CEndpointReference createW3CEndpointReference(java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>,java.util.List<org.w3c.dom.Element>,java.util.Map<javax.xml.namespace.QName,java.lang.String>)
-supr javax.xml.ws.spi.Provider
-hfds eprjc
-
-CLSS public com.sun.xml.ws.util.ASCIIUtility
-meth public static byte[] getBytes(java.io.InputStream) throws java.io.IOException
-meth public static byte[] getBytes(java.lang.String)
-meth public static int parseInt(byte[],int,int,int)
-meth public static java.lang.String toString(byte[],int,int)
-meth public static void copyStream(java.io.InputStream,java.io.OutputStream) throws java.io.IOException
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.ByteArrayBuffer
-cons public init()
-cons public init(byte[])
-cons public init(byte[],int)
-cons public init(int)
-fld protected byte[] buf
-meth public final byte[] getRawData()
-meth public final byte[] toByteArray()
-meth public final int size()
-meth public final java.io.InputStream newInputStream()
-meth public final java.io.InputStream newInputStream(int,int)
-meth public final void reset()
-meth public final void write(byte[],int,int)
-meth public final void write(int)
-meth public final void write(java.io.InputStream) throws java.io.IOException
-meth public final void writeTo(java.io.OutputStream) throws java.io.IOException
-meth public java.lang.String toString()
-meth public void close() throws java.io.IOException
-supr java.io.OutputStream
-hfds CHUNK_SIZE,count
-
-CLSS public final com.sun.xml.ws.util.ByteArrayDataSource
-cons public init(byte[],int,int,java.lang.String)
-cons public init(byte[],int,java.lang.String)
-cons public init(byte[],java.lang.String)
-intf javax.activation.DataSource
-meth public java.io.InputStream getInputStream()
-meth public java.io.OutputStream getOutputStream()
-meth public java.lang.String getContentType()
-meth public java.lang.String getName()
-supr java.lang.Object
-hfds buf,contentType,len,start
-
-CLSS public com.sun.xml.ws.util.CompletedFuture<%0 extends java.lang.Object>
-cons public init({com.sun.xml.ws.util.CompletedFuture%0},java.lang.Throwable)
-intf java.util.concurrent.Future<{com.sun.xml.ws.util.CompletedFuture%0}>
-meth public boolean cancel(boolean)
-meth public boolean isCancelled()
-meth public boolean isDone()
-meth public {com.sun.xml.ws.util.CompletedFuture%0} get() throws java.util.concurrent.ExecutionException
-meth public {com.sun.xml.ws.util.CompletedFuture%0} get(long,java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException
-supr java.lang.Object
-hfds re,v
-
-CLSS public com.sun.xml.ws.util.Constants
-cons public init()
-fld public final static java.lang.String LoggingDomain = "com.sun.xml.ws"
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.DOMUtil
-cons public init()
-meth public static java.util.List<org.w3c.dom.Element> getChildElements(org.w3c.dom.Node)
- anno 0 com.sun.istack.NotNull()
-meth public static org.w3c.dom.Document createDom()
-meth public static org.w3c.dom.Element getFirstChild(org.w3c.dom.Element,java.lang.String,java.lang.String)
-meth public static org.w3c.dom.Element getFirstElementChild(org.w3c.dom.Node)
- anno 0 com.sun.istack.Nullable()
-meth public static org.w3c.dom.Node createDOMNode(java.io.InputStream)
-meth public static void serializeNode(org.w3c.dom.Element,javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-meth public static void writeTagWithAttributes(org.w3c.dom.Element,javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-supr java.lang.Object
-hfds db
-
-CLSS public com.sun.xml.ws.util.FastInfosetReflection
-cons public init()
-fld public final static java.lang.reflect.Constructor fiStAXDocumentParser_new
-fld public final static java.lang.reflect.Method fiStAXDocumentParser_setInputStream
-fld public final static java.lang.reflect.Method fiStAXDocumentParser_setStringInterning
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.FastInfosetUtil
-cons public init()
-meth public static javax.xml.stream.XMLStreamReader createFIStreamReader(java.io.InputStream)
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.HandlerAnnotationInfo
-cons public init()
-meth public java.util.List<javax.xml.ws.handler.Handler> getHandlers()
-meth public java.util.Set<java.lang.String> getRoles()
-meth public void setHandlers(java.util.List<javax.xml.ws.handler.Handler>)
-meth public void setRoles(java.util.Set<java.lang.String>)
-supr java.lang.Object
-hfds handlers,roles
-
-CLSS public com.sun.xml.ws.util.HandlerAnnotationProcessor
-cons public init()
-meth public static com.sun.xml.ws.handler.HandlerChainsModel buildHandlerChainsModel(java.lang.Class<?>)
-meth public static com.sun.xml.ws.util.HandlerAnnotationInfo buildHandlerInfo(java.lang.Class<?>,javax.xml.namespace.QName,javax.xml.namespace.QName,com.sun.xml.ws.api.WSBinding)
- anno 1 com.sun.istack.NotNull()
-supr java.lang.Object
-hfds logger
-
-CLSS public final com.sun.xml.ws.util.JAXWSUtils
+CLSS public static com.sun.xml.ws.util.InjectionPlan$FieldInjectionPlan<%0 extends java.lang.Object, %1 extends java.lang.Object>
+ outer com.sun.xml.ws.util.InjectionPlan
+cons public init(java.lang.reflect.Field)
+meth public void inject({com.sun.xml.ws.util.InjectionPlan$FieldInjectionPlan%0},{com.sun.xml.ws.util.InjectionPlan$FieldInjectionPlan%1})
+supr com.sun.xml.ws.util.InjectionPlan<{com.sun.xml.ws.util.InjectionPlan$FieldInjectionPlan%0},{com.sun.xml.ws.util.InjectionPlan$FieldInjectionPlan%1}>
+hfds field
+
+CLSS public static com.sun.xml.ws.util.InjectionPlan$MethodInjectionPlan<%0 extends java.lang.Object, %1 extends java.lang.Object>
+ outer com.sun.xml.ws.util.InjectionPlan
+cons public init(java.lang.reflect.Method)
+meth public void inject({com.sun.xml.ws.util.InjectionPlan$MethodInjectionPlan%0},{com.sun.xml.ws.util.InjectionPlan$MethodInjectionPlan%1})
+supr com.sun.xml.ws.util.InjectionPlan<{com.sun.xml.ws.util.InjectionPlan$MethodInjectionPlan%0},{com.sun.xml.ws.util.InjectionPlan$MethodInjectionPlan%1}>
+hfds method
+
+CLSS public final com.sun.xml.ws.util.JAXWSUtils
 cons public init()
 meth public static boolean matchQNames(javax.xml.namespace.QName,javax.xml.namespace.QName)
 meth public static java.lang.String absolutize(java.lang.String)
@@ -4492,7 +2071,20 @@ meth public static java.util.Map<java.lang.String,com.sun.xml.ws.api.server.SDDo
  anno 2 com.sun.istack.NotNull()
 supr java.lang.Object
 
-CLSS public com.sun.xml.ws.util.NamespaceSupport
+CLSS public final com.sun.xml.ws.util.MethodUtil
+meth protected java.lang.Class<?> findClass(java.lang.String) throws java.lang.ClassNotFoundException
+meth protected java.lang.Class<?> loadClass(java.lang.String,boolean) throws java.lang.ClassNotFoundException
+meth protected java.security.PermissionCollection getPermissions(java.security.CodeSource)
+meth public static java.lang.Object invoke(java.lang.reflect.Method,java.lang.Object,java.lang.Object[]) throws java.lang.IllegalAccessException,java.lang.reflect.InvocationTargetException
+supr java.security.SecureClassLoader
+hfds DEFAULT_BUFFER_SIZE,MAX_BUFFER_SIZE,PROXY_PACKAGE,TRAMPOLINE,WS_UTIL_PKG,bounce
+
+CLSS public com.sun.xml.ws.util.MrJarUtil
+cons public init()
+meth public static boolean getNoPoolProperty(java.lang.String)
+supr java.lang.Object
+
+CLSS public final com.sun.xml.ws.util.NamespaceSupport
 cons public init()
 cons public init(com.sun.xml.ws.util.NamespaceSupport)
 fld public final static java.lang.String XMLNS = "http://www.w3.org/XML/1998/namespace"
@@ -4546,6 +2138,8 @@ CLSS public final static com.sun.xml.ws.util.Pool$TubePool
  outer com.sun.xml.ws.util.Pool
 cons public init(com.sun.xml.ws.api.pipe.Tube)
 meth protected com.sun.xml.ws.api.pipe.Tube create()
+meth public final com.sun.xml.ws.api.pipe.Tube takeMaster()
+ anno 0 java.lang.Deprecated()
 supr com.sun.xml.ws.util.Pool<com.sun.xml.ws.api.pipe.Tube>
 hfds master
 
@@ -4599,15 +2193,9 @@ meth public int read(byte[],int,int) throws java.io.IOException
 meth public void close() throws java.io.IOException
 meth public void readAll(java.io.InputStream,long) throws java.io.IOException
 supr java.io.InputStream
-hfds closed,fileStream,memStream,readAll
+hfds LOGGER,closed,fileStream,memStream,readAll
 hcls FileStream,MemoryStream
 
-CLSS public com.sun.xml.ws.util.ReadOnlyPropertyException
-cons public init(java.lang.String)
-meth public java.lang.String getPropertyName()
-supr java.lang.IllegalArgumentException
-hfds propertyName
-
 CLSS public final com.sun.xml.ws.util.RuntimeVersion
 cons public init()
 fld public final static com.sun.xml.ws.util.Version VERSION
@@ -4623,18 +2211,25 @@ CLSS public final com.sun.xml.ws.util.ServiceFinder<%0 extends java.lang.Object>
 intf java.lang.Iterable<{com.sun.xml.ws.util.ServiceFinder%0}>
 meth public java.util.Iterator<{com.sun.xml.ws.util.ServiceFinder%0}> iterator()
 meth public static <%0 extends java.lang.Object> com.sun.xml.ws.util.ServiceFinder<{%%0}> find(java.lang.Class<{%%0}>)
+ anno 1 com.sun.istack.NotNull()
 meth public static <%0 extends java.lang.Object> com.sun.xml.ws.util.ServiceFinder<{%%0}> find(java.lang.Class<{%%0}>,com.sun.xml.ws.api.Component)
  anno 1 com.sun.istack.NotNull()
+meth public static <%0 extends java.lang.Object> com.sun.xml.ws.util.ServiceFinder<{%%0}> find(java.lang.Class<{%%0}>,com.sun.xml.ws.api.Component,java.util.ServiceLoader<{%%0}>)
+ anno 1 com.sun.istack.NotNull()
+ anno 3 com.sun.istack.NotNull()
 meth public static <%0 extends java.lang.Object> com.sun.xml.ws.util.ServiceFinder<{%%0}> find(java.lang.Class<{%%0}>,java.lang.ClassLoader)
  anno 1 com.sun.istack.NotNull()
  anno 2 com.sun.istack.Nullable()
 meth public static <%0 extends java.lang.Object> com.sun.xml.ws.util.ServiceFinder<{%%0}> find(java.lang.Class<{%%0}>,java.lang.ClassLoader,com.sun.xml.ws.api.Component)
  anno 1 com.sun.istack.NotNull()
  anno 2 com.sun.istack.Nullable()
+meth public static <%0 extends java.lang.Object> com.sun.xml.ws.util.ServiceFinder<{%%0}> find(java.lang.Class<{%%0}>,java.util.ServiceLoader<{%%0}>)
+ anno 1 com.sun.istack.NotNull()
+ anno 2 com.sun.istack.NotNull()
 meth public {com.sun.xml.ws.util.ServiceFinder%0}[] toArray()
 supr java.lang.Object
-hfds classLoader,component,prefix,serviceClass
-hcls ComponentExWrapper,CompositeIterator,LazyIterator
+hfds component,serviceClass,serviceLoader
+hcls ComponentExWrapper,CompositeIterator
 
 CLSS public com.sun.xml.ws.util.StreamUtils
 cons public init()
@@ -4649,7 +2244,7 @@ supr java.lang.Object
 
 CLSS public com.sun.xml.ws.util.UtilException
 cons public !varargs init(java.lang.String,java.lang.Object[])
-cons public init(com.sun.xml.ws.util.localization.Localizable)
+cons public init(com.sun.istack.localization.Localizable)
 cons public init(java.lang.Throwable)
 meth public java.lang.String getDefaultResourceBundleName()
 supr com.sun.xml.ws.util.exception.JAXWSExceptionBase
@@ -4677,583 +2272,25 @@ supr java.lang.Object
 
 CLSS public abstract com.sun.xml.ws.util.exception.JAXWSExceptionBase
 cons protected !varargs init(java.lang.String,java.lang.Object[])
-cons protected init(com.sun.xml.ws.util.localization.Localizable)
-cons protected init(com.sun.xml.ws.util.localization.Localizable,java.lang.Throwable)
+ anno 0 java.lang.Deprecated()
+cons protected init(com.sun.istack.localization.Localizable)
+cons protected init(com.sun.istack.localization.Localizable,java.lang.Throwable)
 cons protected init(java.lang.String)
 cons protected init(java.lang.Throwable)
-intf com.sun.xml.ws.util.localization.Localizable
+intf com.sun.istack.localization.Localizable
+intf com.sun.istack.localization.LocalizableMessageFactory$ResourceBundleSupplier
 meth protected abstract java.lang.String getDefaultResourceBundleName()
 meth public final java.lang.Object[] getArguments()
 meth public final java.lang.String getKey()
 meth public final java.lang.String getResourceBundleName()
 meth public java.lang.String getMessage()
+meth public java.util.ResourceBundle getResourceBundle(java.util.Locale)
 supr javax.xml.ws.WebServiceException
 hfds msg,serialVersionUID
 
-CLSS public com.sun.xml.ws.util.exception.LocatableWebServiceException
-cons public !varargs init(java.lang.String,java.lang.Throwable,org.xml.sax.Locator[])
-cons public !varargs init(java.lang.String,org.xml.sax.Locator[])
-cons public !varargs init(java.lang.Throwable,org.xml.sax.Locator[])
-cons public init(java.lang.String,java.lang.Throwable,javax.xml.stream.XMLStreamReader)
-cons public init(java.lang.String,javax.xml.stream.XMLStreamReader)
-cons public init(java.lang.Throwable,javax.xml.stream.XMLStreamReader)
-meth public java.util.List<org.xml.sax.Locator> getLocation()
- anno 0 com.sun.istack.NotNull()
-supr javax.xml.ws.WebServiceException
-hfds location
-
-CLSS public abstract interface com.sun.xml.ws.util.localization.Localizable
-fld public final static java.lang.String NOT_LOCALIZABLE
-meth public abstract java.lang.Object[] getArguments()
-meth public abstract java.lang.String getKey()
-meth public abstract java.lang.String getResourceBundleName()
-
-CLSS public final com.sun.xml.ws.util.localization.LocalizableImpl
-cons public init(java.lang.String,java.lang.Object[],java.lang.String)
-intf com.sun.xml.ws.util.localization.Localizable
-meth public java.lang.Object[] getArguments()
-meth public java.lang.String getKey()
-meth public java.lang.String getResourceBundleName()
-supr java.lang.Object
-hfds arguments,key,resourceBundleName
-
-CLSS public final com.sun.xml.ws.util.localization.LocalizableMessage
-cons public !varargs init(java.lang.String,java.lang.String,java.lang.Object[])
-intf com.sun.xml.ws.util.localization.Localizable
-meth public java.lang.Object[] getArguments()
-meth public java.lang.String getKey()
-meth public java.lang.String getResourceBundleName()
-supr java.lang.Object
-hfds _args,_bundlename,_key
-
-CLSS public com.sun.xml.ws.util.localization.LocalizableMessageFactory
-cons public init(java.lang.String)
-meth public !varargs com.sun.xml.ws.util.localization.Localizable getMessage(java.lang.String,java.lang.Object[])
-supr java.lang.Object
-hfds _bundlename
-
-CLSS public com.sun.xml.ws.util.localization.Localizer
-cons public init()
-cons public init(java.util.Locale)
-meth public java.lang.String localize(com.sun.xml.ws.util.localization.Localizable)
-meth public java.util.Locale getLocale()
-supr java.lang.Object
-hfds _locale,_resourceBundles
-
-CLSS public final com.sun.xml.ws.util.localization.NullLocalizable
-cons public init(java.lang.String)
-intf com.sun.xml.ws.util.localization.Localizable
-meth public java.lang.Object[] getArguments()
-meth public java.lang.String getKey()
-meth public java.lang.String getResourceBundleName()
-supr java.lang.Object
-hfds msg
-
-CLSS public final com.sun.xml.ws.util.xml.CDATA
-cons public init(java.lang.String)
-meth public boolean equals(java.lang.Object)
-meth public int hashCode()
-meth public java.lang.String getText()
-supr java.lang.Object
-hfds _text
-
-CLSS public com.sun.xml.ws.util.xml.ContentHandlerToXMLStreamWriter
-cons public init(javax.xml.stream.XMLStreamWriter)
-meth public void characters(char[],int,int) throws org.xml.sax.SAXException
-meth public void endDocument() throws org.xml.sax.SAXException
-meth public void endElement(java.lang.String,java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void endPrefixMapping(java.lang.String) throws org.xml.sax.SAXException
-meth public void ignorableWhitespace(char[],int,int) throws org.xml.sax.SAXException
-meth public void processingInstruction(java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void setDocumentLocator(org.xml.sax.Locator)
-meth public void skippedEntity(java.lang.String) throws org.xml.sax.SAXException
-meth public void startDocument() throws org.xml.sax.SAXException
-meth public void startElement(java.lang.String,java.lang.String,java.lang.String,org.xml.sax.Attributes) throws org.xml.sax.SAXException
-meth public void startPrefixMapping(java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-supr org.xml.sax.helpers.DefaultHandler
-hfds prefixBindings,staxWriter
-
-CLSS public final com.sun.xml.ws.util.xml.DummyLocation
-fld public final static javax.xml.stream.Location INSTANCE
-intf javax.xml.stream.Location
-meth public int getCharacterOffset()
-meth public int getColumnNumber()
-meth public int getLineNumber()
-meth public java.lang.String getPublicId()
-meth public java.lang.String getSystemId()
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.xml.NamedNodeMapIterator
-cons public init(org.w3c.dom.NamedNodeMap)
-fld protected int _index
-fld protected org.w3c.dom.NamedNodeMap _map
-intf java.util.Iterator
-meth public boolean hasNext()
-meth public java.lang.Object next()
-meth public void remove()
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.xml.NodeListIterator
-cons public init(org.w3c.dom.NodeList)
-fld protected int _index
-fld protected org.w3c.dom.NodeList _list
-intf java.util.Iterator
-meth public boolean hasNext()
-meth public java.lang.Object next()
-meth public void remove()
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.xml.StAXResult
-cons public init(javax.xml.stream.XMLStreamWriter)
-supr javax.xml.transform.sax.SAXResult
-
-CLSS public com.sun.xml.ws.util.xml.StAXSource
-cons public init(javax.xml.stream.XMLStreamReader,boolean)
-cons public init(javax.xml.stream.XMLStreamReader,boolean,java.lang.String[])
- anno 3 com.sun.istack.NotNull()
-supr javax.xml.transform.sax.SAXSource
-hfds pseudoParser,reader,repeater,staxReader
-
-CLSS public com.sun.xml.ws.util.xml.XMLStreamReaderFilter
-cons public init(javax.xml.stream.XMLStreamReader)
-fld protected javax.xml.stream.XMLStreamReader reader
-intf com.sun.xml.ws.api.streaming.XMLStreamReaderFactory$RecycleAware
-intf javax.xml.stream.XMLStreamReader
-meth public boolean hasName()
-meth public boolean hasNext() throws javax.xml.stream.XMLStreamException
-meth public boolean hasText()
-meth public boolean isAttributeSpecified(int)
-meth public boolean isCharacters()
-meth public boolean isEndElement()
-meth public boolean isStandalone()
-meth public boolean isStartElement()
-meth public boolean isWhiteSpace()
-meth public boolean standaloneSet()
-meth public char[] getTextCharacters()
-meth public int getAttributeCount()
-meth public int getEventType()
-meth public int getNamespaceCount()
-meth public int getTextCharacters(int,char[],int,int) throws javax.xml.stream.XMLStreamException
-meth public int getTextLength()
-meth public int getTextStart()
-meth public int next() throws javax.xml.stream.XMLStreamException
-meth public int nextTag() throws javax.xml.stream.XMLStreamException
-meth public java.lang.Object getProperty(java.lang.String)
-meth public java.lang.String getAttributeLocalName(int)
-meth public java.lang.String getAttributeNamespace(int)
-meth public java.lang.String getAttributePrefix(int)
-meth public java.lang.String getAttributeType(int)
-meth public java.lang.String getAttributeValue(int)
-meth public java.lang.String getAttributeValue(java.lang.String,java.lang.String)
-meth public java.lang.String getCharacterEncodingScheme()
-meth public java.lang.String getElementText() throws javax.xml.stream.XMLStreamException
-meth public java.lang.String getEncoding()
-meth public java.lang.String getLocalName()
-meth public java.lang.String getNamespacePrefix(int)
-meth public java.lang.String getNamespaceURI()
-meth public java.lang.String getNamespaceURI(int)
-meth public java.lang.String getNamespaceURI(java.lang.String)
-meth public java.lang.String getPIData()
-meth public java.lang.String getPITarget()
-meth public java.lang.String getPrefix()
-meth public java.lang.String getText()
-meth public java.lang.String getVersion()
-meth public javax.xml.namespace.NamespaceContext getNamespaceContext()
-meth public javax.xml.namespace.QName getAttributeName(int)
-meth public javax.xml.namespace.QName getName()
-meth public javax.xml.stream.Location getLocation()
-meth public void close() throws javax.xml.stream.XMLStreamException
-meth public void onRecycled()
-meth public void require(int,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.xml.XMLStreamReaderToXMLStreamWriter
-cons public init()
-fld protected javax.xml.stream.XMLStreamReader in
-fld protected javax.xml.stream.XMLStreamWriter out
-meth protected void handleAttribute(int) throws javax.xml.stream.XMLStreamException
-meth protected void handleCDATA() throws javax.xml.stream.XMLStreamException
-meth protected void handleCharacters() throws javax.xml.stream.XMLStreamException
-meth protected void handleComment() throws javax.xml.stream.XMLStreamException
-meth protected void handleDTD() throws javax.xml.stream.XMLStreamException
-meth protected void handleEndElement() throws javax.xml.stream.XMLStreamException
-meth protected void handleEntityReference() throws javax.xml.stream.XMLStreamException
-meth protected void handlePI() throws javax.xml.stream.XMLStreamException
-meth protected void handleSpace() throws javax.xml.stream.XMLStreamException
-meth protected void handleStartElement() throws javax.xml.stream.XMLStreamException
-meth public void bridge(javax.xml.stream.XMLStreamReader,javax.xml.stream.XMLStreamWriter) throws javax.xml.stream.XMLStreamException
-supr java.lang.Object
-hfds BUF_SIZE,buf
-
-CLSS public com.sun.xml.ws.util.xml.XMLStreamWriterFilter
-cons public init(javax.xml.stream.XMLStreamWriter)
-fld protected javax.xml.stream.XMLStreamWriter writer
-intf com.sun.xml.ws.api.streaming.XMLStreamWriterFactory$RecycleAware
-intf javax.xml.stream.XMLStreamWriter
-meth public java.lang.Object getProperty(java.lang.String)
-meth public java.lang.String getPrefix(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public javax.xml.namespace.NamespaceContext getNamespaceContext()
-meth public void close() throws javax.xml.stream.XMLStreamException
-meth public void flush() throws javax.xml.stream.XMLStreamException
-meth public void onRecycled()
-meth public void setDefaultNamespace(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void setNamespaceContext(javax.xml.namespace.NamespaceContext) throws javax.xml.stream.XMLStreamException
-meth public void setPrefix(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeAttribute(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeAttribute(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeAttribute(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeCData(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeCharacters(char[],int,int) throws javax.xml.stream.XMLStreamException
-meth public void writeCharacters(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeComment(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeDTD(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeDefaultNamespace(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeEmptyElement(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeEmptyElement(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeEmptyElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeEndDocument() throws javax.xml.stream.XMLStreamException
-meth public void writeEndElement() throws javax.xml.stream.XMLStreamException
-meth public void writeEntityRef(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeNamespace(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeProcessingInstruction(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeProcessingInstruction(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeStartDocument() throws javax.xml.stream.XMLStreamException
-meth public void writeStartDocument(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeStartDocument(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeStartElement(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeStartElement(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public void writeStartElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-supr java.lang.Object
-
-CLSS public com.sun.xml.ws.util.xml.XmlUtil
-cons public init()
-fld public final static org.xml.sax.ErrorHandler DRACONIAN_ERROR_HANDLER
-meth public static <%0 extends javax.xml.transform.Result> {%%0} identityTransform(javax.xml.transform.Source,{%%0}) throws java.io.IOException,javax.xml.parsers.ParserConfigurationException,javax.xml.transform.TransformerException,org.xml.sax.SAXException
-meth public static java.io.InputStream getUTF8Stream(java.lang.String)
-meth public static java.lang.String getAttributeNSOrNull(org.w3c.dom.Element,java.lang.String,java.lang.String)
-meth public static java.lang.String getAttributeNSOrNull(org.w3c.dom.Element,javax.xml.namespace.QName)
-meth public static java.lang.String getAttributeOrNull(org.w3c.dom.Element,java.lang.String)
-meth public static java.lang.String getLocalPart(java.lang.String)
-meth public static java.lang.String getPrefix(java.lang.String)
-meth public static java.lang.String getTextForNode(org.w3c.dom.Node)
-meth public static java.util.Iterator getAllAttributes(org.w3c.dom.Element)
-meth public static java.util.Iterator getAllChildren(org.w3c.dom.Element)
-meth public static java.util.List<java.lang.String> parseTokenList(java.lang.String)
-meth public static javax.xml.transform.Transformer newTransformer()
-meth public static org.xml.sax.EntityResolver createDefaultCatalogResolver()
-meth public static org.xml.sax.EntityResolver createEntityResolver(java.net.URL)
- anno 1 com.sun.istack.Nullable()
-supr java.lang.Object
-hfds LEXICAL_HANDLER_PROPERTY,saxParserFactory,transformerFactory
-
 CLSS public abstract interface com.sun.xml.xsom.parser.XMLParser
 meth public abstract void parse(org.xml.sax.InputSource,org.xml.sax.ContentHandler,org.xml.sax.ErrorHandler,org.xml.sax.EntityResolver) throws java.io.IOException,org.xml.sax.SAXException
 
-CLSS public abstract java.awt.Component
-cons protected init()
-fld protected javax.accessibility.AccessibleContext accessibleContext
-fld public final static float BOTTOM_ALIGNMENT = 1.0
-fld public final static float CENTER_ALIGNMENT = 0.5
-fld public final static float LEFT_ALIGNMENT = 0.0
-fld public final static float RIGHT_ALIGNMENT = 1.0
-fld public final static float TOP_ALIGNMENT = 0.0
-innr protected BltBufferStrategy
-innr protected FlipBufferStrategy
-innr protected abstract AccessibleAWTComponent
-innr public final static !enum BaselineResizeBehavior
-intf java.awt.MenuContainer
-intf java.awt.image.ImageObserver
-intf java.io.Serializable
-meth protected boolean requestFocus(boolean)
-meth protected boolean requestFocusInWindow(boolean)
-meth protected final void disableEvents(long)
-meth protected final void enableEvents(long)
-meth protected java.awt.AWTEvent coalesceEvents(java.awt.AWTEvent,java.awt.AWTEvent)
-meth protected java.lang.String paramString()
-meth protected void firePropertyChange(java.lang.String,boolean,boolean)
-meth protected void firePropertyChange(java.lang.String,int,int)
-meth protected void firePropertyChange(java.lang.String,java.lang.Object,java.lang.Object)
-meth protected void processComponentEvent(java.awt.event.ComponentEvent)
-meth protected void processEvent(java.awt.AWTEvent)
-meth protected void processFocusEvent(java.awt.event.FocusEvent)
-meth protected void processHierarchyBoundsEvent(java.awt.event.HierarchyEvent)
-meth protected void processHierarchyEvent(java.awt.event.HierarchyEvent)
-meth protected void processInputMethodEvent(java.awt.event.InputMethodEvent)
-meth protected void processKeyEvent(java.awt.event.KeyEvent)
-meth protected void processMouseEvent(java.awt.event.MouseEvent)
-meth protected void processMouseMotionEvent(java.awt.event.MouseEvent)
-meth protected void processMouseWheelEvent(java.awt.event.MouseWheelEvent)
-meth public <%0 extends java.util.EventListener> {%%0}[] getListeners(java.lang.Class<{%%0}>)
-meth public boolean action(java.awt.Event,java.lang.Object)
- anno 0 java.lang.Deprecated()
-meth public boolean areFocusTraversalKeysSet(int)
-meth public boolean contains(int,int)
-meth public boolean contains(java.awt.Point)
-meth public boolean getFocusTraversalKeysEnabled()
-meth public boolean getIgnoreRepaint()
-meth public boolean gotFocus(java.awt.Event,java.lang.Object)
- anno 0 java.lang.Deprecated()
-meth public boolean handleEvent(java.awt.Event)
- anno 0 java.lang.Deprecated()
-meth public boolean hasFocus()
-meth public boolean imageUpdate(java.awt.Image,int,int,int,int,int)
-meth public boolean inside(int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean isBackgroundSet()
-meth public boolean isCursorSet()
-meth public boolean isDisplayable()
-meth public boolean isDoubleBuffered()
-meth public boolean isEnabled()
-meth public boolean isFocusCycleRoot(java.awt.Container)
-meth public boolean isFocusOwner()
-meth public boolean isFocusTraversable()
- anno 0 java.lang.Deprecated()
-meth public boolean isFocusable()
-meth public boolean isFontSet()
-meth public boolean isForegroundSet()
-meth public boolean isLightweight()
-meth public boolean isMaximumSizeSet()
-meth public boolean isMinimumSizeSet()
-meth public boolean isOpaque()
-meth public boolean isPreferredSizeSet()
-meth public boolean isShowing()
-meth public boolean isValid()
-meth public boolean isVisible()
-meth public boolean keyDown(java.awt.Event,int)
- anno 0 java.lang.Deprecated()
-meth public boolean keyUp(java.awt.Event,int)
- anno 0 java.lang.Deprecated()
-meth public boolean lostFocus(java.awt.Event,java.lang.Object)
- anno 0 java.lang.Deprecated()
-meth public boolean mouseDown(java.awt.Event,int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean mouseDrag(java.awt.Event,int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean mouseEnter(java.awt.Event,int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean mouseExit(java.awt.Event,int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean mouseMove(java.awt.Event,int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean mouseUp(java.awt.Event,int,int)
- anno 0 java.lang.Deprecated()
-meth public boolean postEvent(java.awt.Event)
- anno 0 java.lang.Deprecated()
-meth public boolean prepareImage(java.awt.Image,int,int,java.awt.image.ImageObserver)
-meth public boolean prepareImage(java.awt.Image,java.awt.image.ImageObserver)
-meth public boolean requestFocusInWindow()
-meth public final java.lang.Object getTreeLock()
-meth public final void dispatchEvent(java.awt.AWTEvent)
-meth public float getAlignmentX()
-meth public float getAlignmentY()
-meth public int checkImage(java.awt.Image,int,int,java.awt.image.ImageObserver)
-meth public int checkImage(java.awt.Image,java.awt.image.ImageObserver)
-meth public int getBaseline(int,int)
-meth public int getHeight()
-meth public int getWidth()
-meth public int getX()
-meth public int getY()
-meth public java.awt.Color getBackground()
-meth public java.awt.Color getForeground()
-meth public java.awt.Component getComponentAt(int,int)
-meth public java.awt.Component getComponentAt(java.awt.Point)
-meth public java.awt.Component locate(int,int)
- anno 0 java.lang.Deprecated()
-meth public java.awt.Component$BaselineResizeBehavior getBaselineResizeBehavior()
-meth public java.awt.ComponentOrientation getComponentOrientation()
-meth public java.awt.Container getFocusCycleRootAncestor()
-meth public java.awt.Container getParent()
-meth public java.awt.Cursor getCursor()
-meth public java.awt.Dimension getMaximumSize()
-meth public java.awt.Dimension getMinimumSize()
-meth public java.awt.Dimension getPreferredSize()
-meth public java.awt.Dimension getSize()
-meth public java.awt.Dimension getSize(java.awt.Dimension)
-meth public java.awt.Dimension minimumSize()
- anno 0 java.lang.Deprecated()
-meth public java.awt.Dimension preferredSize()
- anno 0 java.lang.Deprecated()
-meth public java.awt.Dimension size()
- anno 0 java.lang.Deprecated()
-meth public java.awt.Font getFont()
-meth public java.awt.FontMetrics getFontMetrics(java.awt.Font)
-meth public java.awt.Graphics getGraphics()
-meth public java.awt.GraphicsConfiguration getGraphicsConfiguration()
-meth public java.awt.Image createImage(int,int)
-meth public java.awt.Image createImage(java.awt.image.ImageProducer)
-meth public java.awt.Point getLocation()
-meth public java.awt.Point getLocation(java.awt.Point)
-meth public java.awt.Point getLocationOnScreen()
-meth public java.awt.Point getMousePosition()
-meth public java.awt.Point location()
- anno 0 java.lang.Deprecated()
-meth public java.awt.Rectangle bounds()
- anno 0 java.lang.Deprecated()
-meth public java.awt.Rectangle getBounds()
-meth public java.awt.Rectangle getBounds(java.awt.Rectangle)
-meth public java.awt.Toolkit getToolkit()
-meth public java.awt.dnd.DropTarget getDropTarget()
-meth public java.awt.event.ComponentListener[] getComponentListeners()
-meth public java.awt.event.FocusListener[] getFocusListeners()
-meth public java.awt.event.HierarchyBoundsListener[] getHierarchyBoundsListeners()
-meth public java.awt.event.HierarchyListener[] getHierarchyListeners()
-meth public java.awt.event.InputMethodListener[] getInputMethodListeners()
-meth public java.awt.event.KeyListener[] getKeyListeners()
-meth public java.awt.event.MouseListener[] getMouseListeners()
-meth public java.awt.event.MouseMotionListener[] getMouseMotionListeners()
-meth public java.awt.event.MouseWheelListener[] getMouseWheelListeners()
-meth public java.awt.im.InputContext getInputContext()
-meth public java.awt.im.InputMethodRequests getInputMethodRequests()
-meth public java.awt.image.ColorModel getColorModel()
-meth public java.awt.image.VolatileImage createVolatileImage(int,int)
-meth public java.awt.image.VolatileImage createVolatileImage(int,int,java.awt.ImageCapabilities) throws java.awt.AWTException
-meth public java.beans.PropertyChangeListener[] getPropertyChangeListeners()
-meth public java.beans.PropertyChangeListener[] getPropertyChangeListeners(java.lang.String)
-meth public java.lang.String getName()
-meth public java.lang.String toString()
-meth public java.util.Locale getLocale()
-meth public java.util.Set<java.awt.AWTKeyStroke> getFocusTraversalKeys(int)
-meth public javax.accessibility.AccessibleContext getAccessibleContext()
-meth public void add(java.awt.PopupMenu)
-meth public void addComponentListener(java.awt.event.ComponentListener)
-meth public void addFocusListener(java.awt.event.FocusListener)
-meth public void addHierarchyBoundsListener(java.awt.event.HierarchyBoundsListener)
-meth public void addHierarchyListener(java.awt.event.HierarchyListener)
-meth public void addInputMethodListener(java.awt.event.InputMethodListener)
-meth public void addKeyListener(java.awt.event.KeyListener)
-meth public void addMouseListener(java.awt.event.MouseListener)
-meth public void addMouseMotionListener(java.awt.event.MouseMotionListener)
-meth public void addMouseWheelListener(java.awt.event.MouseWheelListener)
-meth public void addNotify()
-meth public void addPropertyChangeListener(java.beans.PropertyChangeListener)
-meth public void addPropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener)
-meth public void applyComponentOrientation(java.awt.ComponentOrientation)
-meth public void deliverEvent(java.awt.Event)
- anno 0 java.lang.Deprecated()
-meth public void disable()
- anno 0 java.lang.Deprecated()
-meth public void doLayout()
-meth public void enable()
- anno 0 java.lang.Deprecated()
-meth public void enable(boolean)
- anno 0 java.lang.Deprecated()
-meth public void enableInputMethods(boolean)
-meth public void firePropertyChange(java.lang.String,byte,byte)
-meth public void firePropertyChange(java.lang.String,char,char)
-meth public void firePropertyChange(java.lang.String,double,double)
-meth public void firePropertyChange(java.lang.String,float,float)
-meth public void firePropertyChange(java.lang.String,long,long)
-meth public void firePropertyChange(java.lang.String,short,short)
-meth public void hide()
- anno 0 java.lang.Deprecated()
-meth public void invalidate()
-meth public void layout()
- anno 0 java.lang.Deprecated()
-meth public void list()
-meth public void list(java.io.PrintStream)
-meth public void list(java.io.PrintStream,int)
-meth public void list(java.io.PrintWriter)
-meth public void list(java.io.PrintWriter,int)
-meth public void move(int,int)
- anno 0 java.lang.Deprecated()
-meth public void nextFocus()
- anno 0 java.lang.Deprecated()
-meth public void paint(java.awt.Graphics)
-meth public void paintAll(java.awt.Graphics)
-meth public void print(java.awt.Graphics)
-meth public void printAll(java.awt.Graphics)
-meth public void remove(java.awt.MenuComponent)
-meth public void removeComponentListener(java.awt.event.ComponentListener)
-meth public void removeFocusListener(java.awt.event.FocusListener)
-meth public void removeHierarchyBoundsListener(java.awt.event.HierarchyBoundsListener)
-meth public void removeHierarchyListener(java.awt.event.HierarchyListener)
-meth public void removeInputMethodListener(java.awt.event.InputMethodListener)
-meth public void removeKeyListener(java.awt.event.KeyListener)
-meth public void removeMouseListener(java.awt.event.MouseListener)
-meth public void removeMouseMotionListener(java.awt.event.MouseMotionListener)
-meth public void removeMouseWheelListener(java.awt.event.MouseWheelListener)
-meth public void removeNotify()
-meth public void removePropertyChangeListener(java.beans.PropertyChangeListener)
-meth public void removePropertyChangeListener(java.lang.String,java.beans.PropertyChangeListener)
-meth public void repaint()
-meth public void repaint(int,int,int,int)
-meth public void repaint(long)
-meth public void repaint(long,int,int,int,int)
-meth public void requestFocus()
-meth public void reshape(int,int,int,int)
- anno 0 java.lang.Deprecated()
-meth public void resize(int,int)
- anno 0 java.lang.Deprecated()
-meth public void resize(java.awt.Dimension)
- anno 0 java.lang.Deprecated()
-meth public void revalidate()
-meth public void setBackground(java.awt.Color)
-meth public void setBounds(int,int,int,int)
-meth public void setBounds(java.awt.Rectangle)
-meth public void setComponentOrientation(java.awt.ComponentOrientation)
-meth public void setCursor(java.awt.Cursor)
-meth public void setDropTarget(java.awt.dnd.DropTarget)
-meth public void setEnabled(boolean)
-meth public void setFocusTraversalKeys(int,java.util.Set<? extends java.awt.AWTKeyStroke>)
-meth public void setFocusTraversalKeysEnabled(boolean)
-meth public void setFocusable(boolean)
-meth public void setFont(java.awt.Font)
-meth public void setForeground(java.awt.Color)
-meth public void setIgnoreRepaint(boolean)
-meth public void setLocale(java.util.Locale)
-meth public void setLocation(int,int)
-meth public void setLocation(java.awt.Point)
-meth public void setMaximumSize(java.awt.Dimension)
-meth public void setMinimumSize(java.awt.Dimension)
-meth public void setName(java.lang.String)
-meth public void setPreferredSize(java.awt.Dimension)
-meth public void setSize(int,int)
-meth public void setSize(java.awt.Dimension)
-meth public void setVisible(boolean)
-meth public void show()
- anno 0 java.lang.Deprecated()
-meth public void show(boolean)
- anno 0 java.lang.Deprecated()
-meth public void transferFocus()
-meth public void transferFocusBackward()
-meth public void transferFocusUpCycle()
-meth public void update(java.awt.Graphics)
-meth public void validate()
-supr java.lang.Object
-
-CLSS public abstract interface java.awt.MenuContainer
-meth public abstract boolean postEvent(java.awt.Event)
- anno 0 java.lang.Deprecated()
-meth public abstract java.awt.Font getFont()
-meth public abstract void remove(java.awt.MenuComponent)
-
-CLSS public abstract interface java.awt.datatransfer.Transferable
-meth public abstract boolean isDataFlavorSupported(java.awt.datatransfer.DataFlavor)
-meth public abstract java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public abstract java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor) throws java.awt.datatransfer.UnsupportedFlavorException,java.io.IOException
-
-CLSS public abstract interface java.awt.image.ImageObserver
-fld public final static int ABORT = 128
-fld public final static int ALLBITS = 32
-fld public final static int ERROR = 64
-fld public final static int FRAMEBITS = 16
-fld public final static int HEIGHT = 2
-fld public final static int PROPERTIES = 4
-fld public final static int SOMEBITS = 8
-fld public final static int WIDTH = 1
-meth public abstract boolean imageUpdate(java.awt.Image,int,int,int,int,int)
-
-CLSS public java.io.BufferedWriter
-cons public init(java.io.Writer)
-cons public init(java.io.Writer,int)
-meth public void close() throws java.io.IOException
-meth public void flush() throws java.io.IOException
-meth public void newLine() throws java.io.IOException
-meth public void write(char[],int,int) throws java.io.IOException
-meth public void write(int) throws java.io.IOException
-meth public void write(java.lang.String,int,int) throws java.io.IOException
-supr java.io.Writer
-
 CLSS public abstract interface java.io.Closeable
 intf java.lang.AutoCloseable
 meth public abstract void close() throws java.io.IOException
@@ -5285,13 +2322,6 @@ supr java.io.OutputStream
 CLSS public abstract interface java.io.Flushable
 meth public abstract void flush() throws java.io.IOException
 
-CLSS public java.io.IOException
-cons public init()
-cons public init(java.lang.String)
-cons public init(java.lang.String,java.lang.Throwable)
-cons public init(java.lang.Throwable)
-supr java.lang.Exception
-
 CLSS public abstract java.io.InputStream
 cons public init()
 intf java.io.Closeable
@@ -5319,34 +2349,45 @@ supr java.lang.Object
 
 CLSS public abstract interface java.io.Serializable
 
-CLSS public abstract java.io.Writer
-cons protected init()
-cons protected init(java.lang.Object)
-fld protected java.lang.Object lock
-intf java.io.Closeable
-intf java.io.Flushable
-intf java.lang.Appendable
-meth public abstract void close() throws java.io.IOException
-meth public abstract void flush() throws java.io.IOException
-meth public abstract void write(char[],int,int) throws java.io.IOException
-meth public java.io.Writer append(char) throws java.io.IOException
-meth public java.io.Writer append(java.lang.CharSequence) throws java.io.IOException
-meth public java.io.Writer append(java.lang.CharSequence,int,int) throws java.io.IOException
-meth public void write(char[]) throws java.io.IOException
-meth public void write(int) throws java.io.IOException
-meth public void write(java.lang.String) throws java.io.IOException
-meth public void write(java.lang.String,int,int) throws java.io.IOException
-supr java.lang.Object
-
-CLSS public abstract interface java.lang.Appendable
-meth public abstract java.lang.Appendable append(char) throws java.io.IOException
-meth public abstract java.lang.Appendable append(java.lang.CharSequence) throws java.io.IOException
-meth public abstract java.lang.Appendable append(java.lang.CharSequence,int,int) throws java.io.IOException
-
 CLSS public abstract interface java.lang.AutoCloseable
 meth public abstract void close() throws java.lang.Exception
 
-CLSS public abstract interface java.lang.Cloneable
+CLSS public abstract java.lang.ClassLoader
+cons protected init()
+cons protected init(java.lang.ClassLoader)
+meth protected final java.lang.Class<?> defineClass(byte[],int,int)
+ anno 0 java.lang.Deprecated()
+meth protected final java.lang.Class<?> defineClass(java.lang.String,byte[],int,int)
+meth protected final java.lang.Class<?> defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
+meth protected final java.lang.Class<?> defineClass(java.lang.String,java.nio.ByteBuffer,java.security.ProtectionDomain)
+meth protected final java.lang.Class<?> findLoadedClass(java.lang.String)
+meth protected final java.lang.Class<?> findSystemClass(java.lang.String) throws java.lang.ClassNotFoundException
+meth protected final void resolveClass(java.lang.Class<?>)
+meth protected final void setSigners(java.lang.Class<?>,java.lang.Object[])
+meth protected java.lang.Class<?> findClass(java.lang.String) throws java.lang.ClassNotFoundException
+meth protected java.lang.Class<?> loadClass(java.lang.String,boolean) throws java.lang.ClassNotFoundException
+meth protected java.lang.Object getClassLoadingLock(java.lang.String)
+meth protected java.lang.Package definePackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.net.URL)
+meth protected java.lang.Package getPackage(java.lang.String)
+meth protected java.lang.Package[] getPackages()
+meth protected java.lang.String findLibrary(java.lang.String)
+meth protected java.net.URL findResource(java.lang.String)
+meth protected java.util.Enumeration<java.net.URL> findResources(java.lang.String) throws java.io.IOException
+meth protected static boolean registerAsParallelCapable()
+meth public final java.lang.ClassLoader getParent()
+meth public java.io.InputStream getResourceAsStream(java.lang.String)
+meth public java.lang.Class<?> loadClass(java.lang.String) throws java.lang.ClassNotFoundException
+meth public java.net.URL getResource(java.lang.String)
+meth public java.util.Enumeration<java.net.URL> getResources(java.lang.String) throws java.io.IOException
+meth public static java.io.InputStream getSystemResourceAsStream(java.lang.String)
+meth public static java.lang.ClassLoader getSystemClassLoader()
+meth public static java.net.URL getSystemResource(java.lang.String)
+meth public static java.util.Enumeration<java.net.URL> getSystemResources(java.lang.String) throws java.io.IOException
+meth public void clearAssertionStatus()
+meth public void setClassAssertionStatus(java.lang.String,boolean)
+meth public void setDefaultAssertionStatus(boolean)
+meth public void setPackageAssertionStatus(java.lang.String,boolean)
+supr java.lang.Object
 
 CLSS public abstract interface java.lang.Comparable<%0 extends java.lang.Object>
 meth public abstract int compareTo({java.lang.Comparable%0})
@@ -5383,13 +2424,6 @@ cons public init(java.lang.String,java.lang.Throwable)
 cons public init(java.lang.Throwable)
 supr java.lang.Throwable
 
-CLSS public java.lang.IllegalArgumentException
-cons public init()
-cons public init(java.lang.String)
-cons public init(java.lang.String,java.lang.Throwable)
-cons public init(java.lang.Throwable)
-supr java.lang.RuntimeException
-
 CLSS public abstract interface java.lang.Iterable<%0 extends java.lang.Object>
 meth public abstract java.util.Iterator<{java.lang.Iterable%0}> iterator()
 meth public java.util.Spliterator<{java.lang.Iterable%0}> spliterator()
@@ -5439,277 +2473,13 @@ meth public void printStackTrace(java.io.PrintWriter)
 meth public void setStackTrace(java.lang.StackTraceElement[])
 supr java.lang.Object
 
-CLSS public abstract interface java.lang.annotation.Annotation
-meth public abstract boolean equals(java.lang.Object)
-meth public abstract int hashCode()
-meth public abstract java.lang.Class<? extends java.lang.annotation.Annotation> annotationType()
-meth public abstract java.lang.String toString()
-
-CLSS public abstract interface !annotation java.lang.annotation.Documented
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
-intf java.lang.annotation.Annotation
-
-CLSS public abstract interface !annotation java.lang.annotation.Retention
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.annotation.RetentionPolicy value()
-
-CLSS public abstract interface !annotation java.lang.annotation.Target
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.annotation.ElementType[] value()
-
-CLSS public abstract java.net.Authenticator
-cons public init()
-innr public final static !enum RequestorType
-meth protected final int getRequestingPort()
-meth protected final java.lang.String getRequestingHost()
-meth protected final java.lang.String getRequestingPrompt()
-meth protected final java.lang.String getRequestingProtocol()
-meth protected final java.lang.String getRequestingScheme()
-meth protected final java.net.InetAddress getRequestingSite()
-meth protected java.net.Authenticator$RequestorType getRequestorType()
-meth protected java.net.PasswordAuthentication getPasswordAuthentication()
-meth protected java.net.URL getRequestingURL()
-meth public static java.net.PasswordAuthentication requestPasswordAuthentication(java.lang.String,java.net.InetAddress,int,java.lang.String,java.lang.String,java.lang.String)
-meth public static java.net.PasswordAuthentication requestPasswordAuthentication(java.lang.String,java.net.InetAddress,int,java.lang.String,java.lang.String,java.lang.String,java.net.URL,java.net.Authenticator$RequestorType)
-meth public static java.net.PasswordAuthentication requestPasswordAuthentication(java.net.InetAddress,int,java.lang.String,java.lang.String,java.lang.String)
-meth public static void setDefault(java.net.Authenticator)
-supr java.lang.Object
-
-CLSS public abstract java.util.AbstractCollection<%0 extends java.lang.Object>
-cons protected init()
-intf java.util.Collection<{java.util.AbstractCollection%0}>
-meth public <%0 extends java.lang.Object> {%%0}[] toArray({%%0}[])
-meth public abstract int size()
-meth public abstract java.util.Iterator<{java.util.AbstractCollection%0}> iterator()
-meth public boolean add({java.util.AbstractCollection%0})
-meth public boolean addAll(java.util.Collection<? extends {java.util.AbstractCollection%0}>)
-meth public boolean contains(java.lang.Object)
-meth public boolean containsAll(java.util.Collection<?>)
-meth public boolean isEmpty()
-meth public boolean remove(java.lang.Object)
-meth public boolean removeAll(java.util.Collection<?>)
-meth public boolean retainAll(java.util.Collection<?>)
-meth public java.lang.Object[] toArray()
-meth public java.lang.String toString()
-meth public void clear()
-supr java.lang.Object
-
-CLSS public abstract java.util.AbstractList<%0 extends java.lang.Object>
-cons protected init()
-fld protected int modCount
-intf java.util.List<{java.util.AbstractList%0}>
-meth protected void removeRange(int,int)
-meth public abstract {java.util.AbstractList%0} get(int)
-meth public boolean add({java.util.AbstractList%0})
-meth public boolean addAll(int,java.util.Collection<? extends {java.util.AbstractList%0}>)
-meth public boolean equals(java.lang.Object)
-meth public int hashCode()
-meth public int indexOf(java.lang.Object)
-meth public int lastIndexOf(java.lang.Object)
-meth public java.util.Iterator<{java.util.AbstractList%0}> iterator()
-meth public java.util.List<{java.util.AbstractList%0}> subList(int,int)
-meth public java.util.ListIterator<{java.util.AbstractList%0}> listIterator()
-meth public java.util.ListIterator<{java.util.AbstractList%0}> listIterator(int)
-meth public void add(int,{java.util.AbstractList%0})
-meth public void clear()
-meth public {java.util.AbstractList%0} remove(int)
-meth public {java.util.AbstractList%0} set(int,{java.util.AbstractList%0})
-supr java.util.AbstractCollection<{java.util.AbstractList%0}>
-
-CLSS public abstract java.util.AbstractMap<%0 extends java.lang.Object, %1 extends java.lang.Object>
+CLSS public java.security.SecureClassLoader
 cons protected init()
-innr public static SimpleEntry
-innr public static SimpleImmutableEntry
-intf java.util.Map<{java.util.AbstractMap%0},{java.util.AbstractMap%1}>
-meth protected java.lang.Object clone() throws java.lang.CloneNotSupportedException
-meth public abstract java.util.Set<java.util.Map$Entry<{java.util.AbstractMap%0},{java.util.AbstractMap%1}>> entrySet()
-meth public boolean containsKey(java.lang.Object)
-meth public boolean containsValue(java.lang.Object)
-meth public boolean equals(java.lang.Object)
-meth public boolean isEmpty()
-meth public int hashCode()
-meth public int size()
-meth public java.lang.String toString()
-meth public java.util.Collection<{java.util.AbstractMap%1}> values()
-meth public java.util.Set<{java.util.AbstractMap%0}> keySet()
-meth public void clear()
-meth public void putAll(java.util.Map<? extends {java.util.AbstractMap%0},? extends {java.util.AbstractMap%1}>)
-meth public {java.util.AbstractMap%1} get(java.lang.Object)
-meth public {java.util.AbstractMap%1} put({java.util.AbstractMap%0},{java.util.AbstractMap%1})
-meth public {java.util.AbstractMap%1} remove(java.lang.Object)
-supr java.lang.Object
-
-CLSS public java.util.ArrayList<%0 extends java.lang.Object>
-cons public init()
-cons public init(int)
-cons public init(java.util.Collection<? extends {java.util.ArrayList%0}>)
-intf java.io.Serializable
-intf java.lang.Cloneable
-intf java.util.List<{java.util.ArrayList%0}>
-intf java.util.RandomAccess
-meth protected void removeRange(int,int)
-meth public <%0 extends java.lang.Object> {%%0}[] toArray({%%0}[])
-meth public boolean add({java.util.ArrayList%0})
-meth public boolean addAll(int,java.util.Collection<? extends {java.util.ArrayList%0}>)
-meth public boolean addAll(java.util.Collection<? extends {java.util.ArrayList%0}>)
-meth public boolean contains(java.lang.Object)
-meth public boolean isEmpty()
-meth public boolean remove(java.lang.Object)
-meth public boolean removeAll(java.util.Collection<?>)
-meth public boolean removeIf(java.util.function.Predicate<? super {java.util.ArrayList%0}>)
-meth public boolean retainAll(java.util.Collection<?>)
-meth public int indexOf(java.lang.Object)
-meth public int lastIndexOf(java.lang.Object)
-meth public int size()
-meth public java.lang.Object clone()
-meth public java.lang.Object[] toArray()
-meth public java.util.Iterator<{java.util.ArrayList%0}> iterator()
-meth public java.util.List<{java.util.ArrayList%0}> subList(int,int)
-meth public java.util.ListIterator<{java.util.ArrayList%0}> listIterator()
-meth public java.util.ListIterator<{java.util.ArrayList%0}> listIterator(int)
-meth public java.util.Spliterator<{java.util.ArrayList%0}> spliterator()
-meth public void add(int,{java.util.ArrayList%0})
-meth public void clear()
-meth public void ensureCapacity(int)
-meth public void forEach(java.util.function.Consumer<? super {java.util.ArrayList%0}>)
-meth public void replaceAll(java.util.function.UnaryOperator<{java.util.ArrayList%0}>)
-meth public void sort(java.util.Comparator<? super {java.util.ArrayList%0}>)
-meth public void trimToSize()
-meth public {java.util.ArrayList%0} get(int)
-meth public {java.util.ArrayList%0} remove(int)
-meth public {java.util.ArrayList%0} set(int,{java.util.ArrayList%0})
-supr java.util.AbstractList<{java.util.ArrayList%0}>
-
-CLSS public abstract interface java.util.Collection<%0 extends java.lang.Object>
-intf java.lang.Iterable<{java.util.Collection%0}>
-meth public abstract <%0 extends java.lang.Object> {%%0}[] toArray({%%0}[])
-meth public abstract boolean add({java.util.Collection%0})
-meth public abstract boolean addAll(java.util.Collection<? extends {java.util.Collection%0}>)
-meth public abstract boolean contains(java.lang.Object)
-meth public abstract boolean containsAll(java.util.Collection<?>)
-meth public abstract boolean equals(java.lang.Object)
-meth public abstract boolean isEmpty()
-meth public abstract boolean remove(java.lang.Object)
-meth public abstract boolean removeAll(java.util.Collection<?>)
-meth public abstract boolean retainAll(java.util.Collection<?>)
-meth public abstract int hashCode()
-meth public abstract int size()
-meth public abstract java.lang.Object[] toArray()
-meth public abstract java.util.Iterator<{java.util.Collection%0}> iterator()
-meth public abstract void clear()
-meth public boolean removeIf(java.util.function.Predicate<? super {java.util.Collection%0}>)
-meth public java.util.Spliterator<{java.util.Collection%0}> spliterator()
-meth public java.util.stream.Stream<{java.util.Collection%0}> parallelStream()
-meth public java.util.stream.Stream<{java.util.Collection%0}> stream()
-
-CLSS public java.util.HashMap<%0 extends java.lang.Object, %1 extends java.lang.Object>
-cons public init()
-cons public init(int)
-cons public init(int,float)
-cons public init(java.util.Map<? extends {java.util.HashMap%0},? extends {java.util.HashMap%1}>)
-intf java.io.Serializable
-intf java.lang.Cloneable
-intf java.util.Map<{java.util.HashMap%0},{java.util.HashMap%1}>
-meth public boolean containsKey(java.lang.Object)
-meth public boolean containsValue(java.lang.Object)
-meth public boolean isEmpty()
-meth public boolean remove(java.lang.Object,java.lang.Object)
-meth public boolean replace({java.util.HashMap%0},{java.util.HashMap%1},{java.util.HashMap%1})
-meth public int size()
-meth public java.lang.Object clone()
-meth public java.util.Collection<{java.util.HashMap%1}> values()
-meth public java.util.Set<java.util.Map$Entry<{java.util.HashMap%0},{java.util.HashMap%1}>> entrySet()
-meth public java.util.Set<{java.util.HashMap%0}> keySet()
-meth public void clear()
-meth public void forEach(java.util.function.BiConsumer<? super {java.util.HashMap%0},? super {java.util.HashMap%1}>)
-meth public void putAll(java.util.Map<? extends {java.util.HashMap%0},? extends {java.util.HashMap%1}>)
-meth public void replaceAll(java.util.function.BiFunction<? super {java.util.HashMap%0},? super {java.util.HashMap%1},? extends {java.util.HashMap%1}>)
-meth public {java.util.HashMap%1} compute({java.util.HashMap%0},java.util.function.BiFunction<? super {java.util.HashMap%0},? super {java.util.HashMap%1},? extends {java.util.HashMap%1}>)
-meth public {java.util.HashMap%1} computeIfAbsent({java.util.HashMap%0},java.util.function.Function<? super {java.util.HashMap%0},? extends {java.util.HashMap%1}>)
-meth public {java.util.HashMap%1} computeIfPresent({java.util.HashMap%0},java.util.function.BiFunction<? super {java.util.HashMap%0},? super {java.util.HashMap%1},? extends {java.util.HashMap%1}>)
-meth public {java.util.HashMap%1} get(java.lang.Object)
-meth public {java.util.HashMap%1} getOrDefault(java.lang.Object,{java.util.HashMap%1})
-meth public {java.util.HashMap%1} merge({java.util.HashMap%0},{java.util.HashMap%1},java.util.function.BiFunction<? super {java.util.HashMap%1},? super {java.util.HashMap%1},? extends {java.util.HashMap%1}>)
-meth public {java.util.HashMap%1} put({java.util.HashMap%0},{java.util.HashMap%1})
-meth public {java.util.HashMap%1} putIfAbsent({java.util.HashMap%0},{java.util.HashMap%1})
-meth public {java.util.HashMap%1} remove(java.lang.Object)
-meth public {java.util.HashMap%1} replace({java.util.HashMap%0},{java.util.HashMap%1})
-supr java.util.AbstractMap<{java.util.HashMap%0},{java.util.HashMap%1}>
-
-CLSS public abstract interface java.util.Iterator<%0 extends java.lang.Object>
-meth public abstract boolean hasNext()
-meth public abstract {java.util.Iterator%0} next()
-meth public void forEachRemaining(java.util.function.Consumer<? super {java.util.Iterator%0}>)
-meth public void remove()
-
-CLSS public abstract interface java.util.List<%0 extends java.lang.Object>
-intf java.util.Collection<{java.util.List%0}>
-meth public abstract <%0 extends java.lang.Object> {%%0}[] toArray({%%0}[])
-meth public abstract boolean add({java.util.List%0})
-meth public abstract boolean addAll(int,java.util.Collection<? extends {java.util.List%0}>)
-meth public abstract boolean addAll(java.util.Collection<? extends {java.util.List%0}>)
-meth public abstract boolean contains(java.lang.Object)
-meth public abstract boolean containsAll(java.util.Collection<?>)
-meth public abstract boolean equals(java.lang.Object)
-meth public abstract boolean isEmpty()
-meth public abstract boolean remove(java.lang.Object)
-meth public abstract boolean removeAll(java.util.Collection<?>)
-meth public abstract boolean retainAll(java.util.Collection<?>)
-meth public abstract int hashCode()
-meth public abstract int indexOf(java.lang.Object)
-meth public abstract int lastIndexOf(java.lang.Object)
-meth public abstract int size()
-meth public abstract java.lang.Object[] toArray()
-meth public abstract java.util.Iterator<{java.util.List%0}> iterator()
-meth public abstract java.util.List<{java.util.List%0}> subList(int,int)
-meth public abstract java.util.ListIterator<{java.util.List%0}> listIterator()
-meth public abstract java.util.ListIterator<{java.util.List%0}> listIterator(int)
-meth public abstract void add(int,{java.util.List%0})
-meth public abstract void clear()
-meth public abstract {java.util.List%0} get(int)
-meth public abstract {java.util.List%0} remove(int)
-meth public abstract {java.util.List%0} set(int,{java.util.List%0})
-meth public java.util.Spliterator<{java.util.List%0}> spliterator()
-meth public void replaceAll(java.util.function.UnaryOperator<{java.util.List%0}>)
-meth public void sort(java.util.Comparator<? super {java.util.List%0}>)
-
-CLSS public abstract interface java.util.Map<%0 extends java.lang.Object, %1 extends java.lang.Object>
-innr public abstract interface static Entry
-meth public abstract boolean containsKey(java.lang.Object)
-meth public abstract boolean containsValue(java.lang.Object)
-meth public abstract boolean equals(java.lang.Object)
-meth public abstract boolean isEmpty()
-meth public abstract int hashCode()
-meth public abstract int size()
-meth public abstract java.util.Collection<{java.util.Map%1}> values()
-meth public abstract java.util.Set<java.util.Map$Entry<{java.util.Map%0},{java.util.Map%1}>> entrySet()
-meth public abstract java.util.Set<{java.util.Map%0}> keySet()
-meth public abstract void clear()
-meth public abstract void putAll(java.util.Map<? extends {java.util.Map%0},? extends {java.util.Map%1}>)
-meth public abstract {java.util.Map%1} get(java.lang.Object)
-meth public abstract {java.util.Map%1} put({java.util.Map%0},{java.util.Map%1})
-meth public abstract {java.util.Map%1} remove(java.lang.Object)
-meth public boolean remove(java.lang.Object,java.lang.Object)
-meth public boolean replace({java.util.Map%0},{java.util.Map%1},{java.util.Map%1})
-meth public void forEach(java.util.function.BiConsumer<? super {java.util.Map%0},? super {java.util.Map%1}>)
-meth public void replaceAll(java.util.function.BiFunction<? super {java.util.Map%0},? super {java.util.Map%1},? extends {java.util.Map%1}>)
-meth public {java.util.Map%1} compute({java.util.Map%0},java.util.function.BiFunction<? super {java.util.Map%0},? super {java.util.Map%1},? extends {java.util.Map%1}>)
-meth public {java.util.Map%1} computeIfAbsent({java.util.Map%0},java.util.function.Function<? super {java.util.Map%0},? extends {java.util.Map%1}>)
-meth public {java.util.Map%1} computeIfPresent({java.util.Map%0},java.util.function.BiFunction<? super {java.util.Map%0},? super {java.util.Map%1},? extends {java.util.Map%1}>)
-meth public {java.util.Map%1} getOrDefault(java.lang.Object,{java.util.Map%1})
-meth public {java.util.Map%1} merge({java.util.Map%0},{java.util.Map%1},java.util.function.BiFunction<? super {java.util.Map%1},? super {java.util.Map%1},? extends {java.util.Map%1}>)
-meth public {java.util.Map%1} putIfAbsent({java.util.Map%0},{java.util.Map%1})
-meth public {java.util.Map%1} replace({java.util.Map%0},{java.util.Map%1})
-
-CLSS public abstract interface java.util.RandomAccess
+cons protected init(java.lang.ClassLoader)
+meth protected final java.lang.Class<?> defineClass(java.lang.String,byte[],int,int,java.security.CodeSource)
+meth protected final java.lang.Class<?> defineClass(java.lang.String,java.nio.ByteBuffer,java.security.CodeSource)
+meth protected java.security.PermissionCollection getPermissions(java.security.CodeSource)
+supr java.lang.ClassLoader
 
 CLSS public abstract interface java.util.concurrent.Future<%0 extends java.lang.Object>
 meth public abstract boolean cancel(boolean)
@@ -5718,576 +2488,17 @@ meth public abstract boolean isDone()
 meth public abstract {java.util.concurrent.Future%0} get() throws java.lang.InterruptedException,java.util.concurrent.ExecutionException
 meth public abstract {java.util.concurrent.Future%0} get(long,java.util.concurrent.TimeUnit) throws java.lang.InterruptedException,java.util.concurrent.ExecutionException,java.util.concurrent.TimeoutException
 
-CLSS public abstract interface javax.activation.DataContentHandler
-meth public abstract java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public abstract java.lang.Object getContent(javax.activation.DataSource) throws java.io.IOException
-meth public abstract java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor,javax.activation.DataSource) throws java.awt.datatransfer.UnsupportedFlavorException,java.io.IOException
-meth public abstract void writeTo(java.lang.Object,java.lang.String,java.io.OutputStream) throws java.io.IOException
-
-CLSS public javax.activation.DataHandler
-cons public init(java.lang.Object,java.lang.String)
-cons public init(java.net.URL)
-cons public init(javax.activation.DataSource)
-intf java.awt.datatransfer.Transferable
-meth public boolean isDataFlavorSupported(java.awt.datatransfer.DataFlavor)
-meth public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
-meth public java.io.InputStream getInputStream() throws java.io.IOException
-meth public java.io.OutputStream getOutputStream() throws java.io.IOException
-meth public java.lang.Object getBean(javax.activation.CommandInfo)
-meth public java.lang.Object getContent() throws java.io.IOException
-meth public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor) throws java.awt.datatransfer.UnsupportedFlavorException,java.io.IOException
-meth public java.lang.String getContentType()
-meth public java.lang.String getName()
-meth public javax.activation.CommandInfo getCommand(java.lang.String)
-meth public javax.activation.CommandInfo[] getAllCommands()
-meth public javax.activation.CommandInfo[] getPreferredCommands()
-meth public javax.activation.DataSource getDataSource()
-meth public static void setDataContentHandlerFactory(javax.activation.DataContentHandlerFactory)
-meth public void setCommandMap(javax.activation.CommandMap)
-meth public void writeTo(java.io.OutputStream) throws java.io.IOException
-supr java.lang.Object
-hfds currentCommandMap,dataContentHandler,dataSource,emptyFlavors,factory,factoryDCH,objDataSource,object,objectMimeType,oldFactory,shortType,transferFlavors
-
 CLSS public abstract interface javax.activation.DataSource
 meth public abstract java.io.InputStream getInputStream() throws java.io.IOException
 meth public abstract java.io.OutputStream getOutputStream() throws java.io.IOException
 meth public abstract java.lang.String getContentType()
 meth public abstract java.lang.String getName()
 
-CLSS public abstract javax.annotation.processing.AbstractProcessor
-cons protected init()
-fld protected javax.annotation.processing.ProcessingEnvironment processingEnv
-intf javax.annotation.processing.Processor
-meth protected boolean isInitialized()
-meth public abstract boolean process(java.util.Set<? extends javax.lang.model.element.TypeElement>,javax.annotation.processing.RoundEnvironment)
-meth public java.lang.Iterable<? extends javax.annotation.processing.Completion> getCompletions(javax.lang.model.element.Element,javax.lang.model.element.AnnotationMirror,javax.lang.model.element.ExecutableElement,java.lang.String)
-meth public java.util.Set<java.lang.String> getSupportedAnnotationTypes()
-meth public java.util.Set<java.lang.String> getSupportedOptions()
-meth public javax.lang.model.SourceVersion getSupportedSourceVersion()
-meth public void init(javax.annotation.processing.ProcessingEnvironment)
-supr java.lang.Object
-
-CLSS public abstract interface javax.annotation.processing.Processor
-meth public abstract boolean process(java.util.Set<? extends javax.lang.model.element.TypeElement>,javax.annotation.processing.RoundEnvironment)
-meth public abstract java.lang.Iterable<? extends javax.annotation.processing.Completion> getCompletions(javax.lang.model.element.Element,javax.lang.model.element.AnnotationMirror,javax.lang.model.element.ExecutableElement,java.lang.String)
-meth public abstract java.util.Set<java.lang.String> getSupportedAnnotationTypes()
-meth public abstract java.util.Set<java.lang.String> getSupportedOptions()
-meth public abstract javax.lang.model.SourceVersion getSupportedSourceVersion()
-meth public abstract void init(javax.annotation.processing.ProcessingEnvironment)
-
-CLSS public abstract interface !annotation javax.annotation.processing.SupportedAnnotationTypes
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.String[] value()
-
-CLSS public abstract interface !annotation javax.annotation.processing.SupportedOptions
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.String[] value()
-
-CLSS public abstract interface !annotation javax.annotation.processing.SupportedSourceVersion
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract javax.lang.model.SourceVersion value()
-
-CLSS public abstract interface !annotation javax.jws.soap.SOAPBinding
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD])
-innr public final static !enum ParameterStyle
-innr public final static !enum Style
-innr public final static !enum Use
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault javax.jws.soap.SOAPBinding$ParameterStyle parameterStyle()
-meth public abstract !hasdefault javax.jws.soap.SOAPBinding$Style style()
-meth public abstract !hasdefault javax.jws.soap.SOAPBinding$Use use()
-
-CLSS public abstract interface javax.lang.model.element.ElementVisitor<%0 extends java.lang.Object, %1 extends java.lang.Object>
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visit(javax.lang.model.element.Element)
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visit(javax.lang.model.element.Element,{javax.lang.model.element.ElementVisitor%1})
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visitExecutable(javax.lang.model.element.ExecutableElement,{javax.lang.model.element.ElementVisitor%1})
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visitPackage(javax.lang.model.element.PackageElement,{javax.lang.model.element.ElementVisitor%1})
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visitType(javax.lang.model.element.TypeElement,{javax.lang.model.element.ElementVisitor%1})
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visitTypeParameter(javax.lang.model.element.TypeParameterElement,{javax.lang.model.element.ElementVisitor%1})
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visitUnknown(javax.lang.model.element.Element,{javax.lang.model.element.ElementVisitor%1})
-meth public abstract {javax.lang.model.element.ElementVisitor%0} visitVariable(javax.lang.model.element.VariableElement,{javax.lang.model.element.ElementVisitor%1})
-
-CLSS public abstract interface javax.lang.model.type.TypeVisitor<%0 extends java.lang.Object, %1 extends java.lang.Object>
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visit(javax.lang.model.type.TypeMirror)
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visit(javax.lang.model.type.TypeMirror,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitArray(javax.lang.model.type.ArrayType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitDeclared(javax.lang.model.type.DeclaredType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitError(javax.lang.model.type.ErrorType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitExecutable(javax.lang.model.type.ExecutableType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitIntersection(javax.lang.model.type.IntersectionType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitNoType(javax.lang.model.type.NoType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitNull(javax.lang.model.type.NullType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitPrimitive(javax.lang.model.type.PrimitiveType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitTypeVariable(javax.lang.model.type.TypeVariable,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitUnion(javax.lang.model.type.UnionType,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitUnknown(javax.lang.model.type.TypeMirror,{javax.lang.model.type.TypeVisitor%1})
-meth public abstract {javax.lang.model.type.TypeVisitor%0} visitWildcard(javax.lang.model.type.WildcardType,{javax.lang.model.type.TypeVisitor%1})
-
-CLSS public abstract javax.lang.model.util.AbstractElementVisitor6<%0 extends java.lang.Object, %1 extends java.lang.Object>
- anno 0 javax.annotation.processing.SupportedSourceVersion(javax.lang.model.SourceVersion value=RELEASE_6)
-cons protected init()
-intf javax.lang.model.element.ElementVisitor<{javax.lang.model.util.AbstractElementVisitor6%0},{javax.lang.model.util.AbstractElementVisitor6%1}>
-meth public final {javax.lang.model.util.AbstractElementVisitor6%0} visit(javax.lang.model.element.Element)
-meth public final {javax.lang.model.util.AbstractElementVisitor6%0} visit(javax.lang.model.element.Element,{javax.lang.model.util.AbstractElementVisitor6%1})
-meth public {javax.lang.model.util.AbstractElementVisitor6%0} visitUnknown(javax.lang.model.element.Element,{javax.lang.model.util.AbstractElementVisitor6%1})
-supr java.lang.Object
-
-CLSS public abstract javax.lang.model.util.AbstractTypeVisitor6<%0 extends java.lang.Object, %1 extends java.lang.Object>
-cons protected init()
-intf javax.lang.model.type.TypeVisitor<{javax.lang.model.util.AbstractTypeVisitor6%0},{javax.lang.model.util.AbstractTypeVisitor6%1}>
-meth public final {javax.lang.model.util.AbstractTypeVisitor6%0} visit(javax.lang.model.type.TypeMirror)
-meth public final {javax.lang.model.util.AbstractTypeVisitor6%0} visit(javax.lang.model.type.TypeMirror,{javax.lang.model.util.AbstractTypeVisitor6%1})
-meth public {javax.lang.model.util.AbstractTypeVisitor6%0} visitIntersection(javax.lang.model.type.IntersectionType,{javax.lang.model.util.AbstractTypeVisitor6%1})
-meth public {javax.lang.model.util.AbstractTypeVisitor6%0} visitUnion(javax.lang.model.type.UnionType,{javax.lang.model.util.AbstractTypeVisitor6%1})
-meth public {javax.lang.model.util.AbstractTypeVisitor6%0} visitUnknown(javax.lang.model.type.TypeMirror,{javax.lang.model.util.AbstractTypeVisitor6%1})
-supr java.lang.Object
-
-CLSS public javax.lang.model.util.SimpleElementVisitor6<%0 extends java.lang.Object, %1 extends java.lang.Object>
- anno 0 javax.annotation.processing.SupportedSourceVersion(javax.lang.model.SourceVersion value=RELEASE_6)
-cons protected init()
-cons protected init({javax.lang.model.util.SimpleElementVisitor6%0})
-fld protected final {javax.lang.model.util.SimpleElementVisitor6%0} DEFAULT_VALUE
-meth protected {javax.lang.model.util.SimpleElementVisitor6%0} defaultAction(javax.lang.model.element.Element,{javax.lang.model.util.SimpleElementVisitor6%1})
-meth public {javax.lang.model.util.SimpleElementVisitor6%0} visitExecutable(javax.lang.model.element.ExecutableElement,{javax.lang.model.util.SimpleElementVisitor6%1})
-meth public {javax.lang.model.util.SimpleElementVisitor6%0} visitPackage(javax.lang.model.element.PackageElement,{javax.lang.model.util.SimpleElementVisitor6%1})
-meth public {javax.lang.model.util.SimpleElementVisitor6%0} visitType(javax.lang.model.element.TypeElement,{javax.lang.model.util.SimpleElementVisitor6%1})
-meth public {javax.lang.model.util.SimpleElementVisitor6%0} visitTypeParameter(javax.lang.model.element.TypeParameterElement,{javax.lang.model.util.SimpleElementVisitor6%1})
-meth public {javax.lang.model.util.SimpleElementVisitor6%0} visitVariable(javax.lang.model.element.VariableElement,{javax.lang.model.util.SimpleElementVisitor6%1})
-supr javax.lang.model.util.AbstractElementVisitor6<{javax.lang.model.util.SimpleElementVisitor6%0},{javax.lang.model.util.SimpleElementVisitor6%1}>
-
-CLSS public javax.lang.model.util.SimpleTypeVisitor6<%0 extends java.lang.Object, %1 extends java.lang.Object>
- anno 0 javax.annotation.processing.SupportedSourceVersion(javax.lang.model.SourceVersion value=RELEASE_6)
-cons protected init()
-cons protected init({javax.lang.model.util.SimpleTypeVisitor6%0})
-fld protected final {javax.lang.model.util.SimpleTypeVisitor6%0} DEFAULT_VALUE
-meth protected {javax.lang.model.util.SimpleTypeVisitor6%0} defaultAction(javax.lang.model.type.TypeMirror,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitArray(javax.lang.model.type.ArrayType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitDeclared(javax.lang.model.type.DeclaredType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitError(javax.lang.model.type.ErrorType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitExecutable(javax.lang.model.type.ExecutableType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitNoType(javax.lang.model.type.NoType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitNull(javax.lang.model.type.NullType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitPrimitive(javax.lang.model.type.PrimitiveType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitTypeVariable(javax.lang.model.type.TypeVariable,{javax.lang.model.util.SimpleTypeVisitor6%1})
-meth public {javax.lang.model.util.SimpleTypeVisitor6%0} visitWildcard(javax.lang.model.type.WildcardType,{javax.lang.model.util.SimpleTypeVisitor6%1})
-supr javax.lang.model.util.AbstractTypeVisitor6<{javax.lang.model.util.SimpleTypeVisitor6%0},{javax.lang.model.util.SimpleTypeVisitor6%1}>
-
-CLSS public abstract interface !annotation javax.xml.bind.annotation.XmlRootElement
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String name()
-meth public abstract !hasdefault java.lang.String namespace()
-
-CLSS public abstract interface !annotation javax.xml.bind.annotation.XmlSchema
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[PACKAGE])
-fld public final static java.lang.String NO_LOCATION = "##generate"
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String location()
-meth public abstract !hasdefault java.lang.String namespace()
-meth public abstract !hasdefault javax.xml.bind.annotation.XmlNsForm attributeFormDefault()
-meth public abstract !hasdefault javax.xml.bind.annotation.XmlNsForm elementFormDefault()
-meth public abstract !hasdefault javax.xml.bind.annotation.XmlNs[] xmlns()
-
-CLSS public abstract interface !annotation javax.xml.bind.annotation.XmlTransient
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[FIELD, METHOD, TYPE])
-intf java.lang.annotation.Annotation
-
-CLSS public abstract interface !annotation javax.xml.bind.annotation.XmlType
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-innr public final static DEFAULT
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.Class factoryClass()
-meth public abstract !hasdefault java.lang.String factoryMethod()
-meth public abstract !hasdefault java.lang.String name()
-meth public abstract !hasdefault java.lang.String namespace()
-meth public abstract !hasdefault java.lang.String[] propOrder()
-
 CLSS public abstract interface javax.xml.namespace.NamespaceContext
 meth public abstract java.lang.String getNamespaceURI(java.lang.String)
 meth public abstract java.lang.String getPrefix(java.lang.String)
 meth public abstract java.util.Iterator getPrefixes(java.lang.String)
 
-CLSS public abstract javax.xml.soap.AttachmentPart
-cons public init()
-meth public abstract byte[] getRawContentBytes() throws javax.xml.soap.SOAPException
-meth public abstract int getSize() throws javax.xml.soap.SOAPException
-meth public abstract java.io.InputStream getBase64Content() throws javax.xml.soap.SOAPException
-meth public abstract java.io.InputStream getRawContent() throws javax.xml.soap.SOAPException
-meth public abstract java.lang.Object getContent() throws javax.xml.soap.SOAPException
-meth public abstract java.lang.String[] getMimeHeader(java.lang.String)
-meth public abstract java.util.Iterator getAllMimeHeaders()
-meth public abstract java.util.Iterator getMatchingMimeHeaders(java.lang.String[])
-meth public abstract java.util.Iterator getNonMatchingMimeHeaders(java.lang.String[])
-meth public abstract javax.activation.DataHandler getDataHandler() throws javax.xml.soap.SOAPException
-meth public abstract void addMimeHeader(java.lang.String,java.lang.String)
-meth public abstract void clearContent()
-meth public abstract void removeAllMimeHeaders()
-meth public abstract void removeMimeHeader(java.lang.String)
-meth public abstract void setBase64Content(java.io.InputStream,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract void setContent(java.lang.Object,java.lang.String)
-meth public abstract void setDataHandler(javax.activation.DataHandler)
-meth public abstract void setMimeHeader(java.lang.String,java.lang.String)
-meth public abstract void setRawContent(java.io.InputStream,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract void setRawContentBytes(byte[],int,int,java.lang.String) throws javax.xml.soap.SOAPException
-meth public java.lang.String getContentId()
-meth public java.lang.String getContentLocation()
-meth public java.lang.String getContentType()
-meth public void setContentId(java.lang.String)
-meth public void setContentLocation(java.lang.String)
-meth public void setContentType(java.lang.String)
-supr java.lang.Object
-
-CLSS public abstract javax.xml.soap.MessageFactory
-cons public init()
-meth public abstract javax.xml.soap.SOAPMessage createMessage() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPMessage createMessage(javax.xml.soap.MimeHeaders,java.io.InputStream) throws java.io.IOException,javax.xml.soap.SOAPException
-meth public static javax.xml.soap.MessageFactory newInstance() throws javax.xml.soap.SOAPException
-meth public static javax.xml.soap.MessageFactory newInstance(java.lang.String) throws javax.xml.soap.SOAPException
-supr java.lang.Object
-hfds DEFAULT_MESSAGE_FACTORY,MESSAGE_FACTORY_PROPERTY
-
-CLSS public abstract interface javax.xml.soap.Node
-intf org.w3c.dom.Node
-meth public abstract java.lang.String getValue()
-meth public abstract javax.xml.soap.SOAPElement getParentElement()
-meth public abstract void detachNode()
-meth public abstract void recycleNode()
-meth public abstract void setParentElement(javax.xml.soap.SOAPElement) throws javax.xml.soap.SOAPException
-meth public abstract void setValue(java.lang.String)
-
-CLSS public abstract javax.xml.soap.SAAJMetaFactory
-cons protected init()
-meth protected abstract javax.xml.soap.MessageFactory newMessageFactory(java.lang.String) throws javax.xml.soap.SOAPException
-meth protected abstract javax.xml.soap.SOAPFactory newSOAPFactory(java.lang.String) throws javax.xml.soap.SOAPException
-supr java.lang.Object
-hfds DEFAULT_META_FACTORY_CLASS,META_FACTORY_CLASS_PROPERTY
-
-CLSS public abstract interface javax.xml.soap.SOAPConstants
-fld public final static java.lang.String DEFAULT_SOAP_PROTOCOL = "SOAP 1.1 Protocol"
-fld public final static java.lang.String DYNAMIC_SOAP_PROTOCOL = "Dynamic Protocol"
-fld public final static java.lang.String SOAP_1_1_CONTENT_TYPE = "text/xml"
-fld public final static java.lang.String SOAP_1_1_PROTOCOL = "SOAP 1.1 Protocol"
-fld public final static java.lang.String SOAP_1_2_CONTENT_TYPE = "application/soap+xml"
-fld public final static java.lang.String SOAP_1_2_PROTOCOL = "SOAP 1.2 Protocol"
-fld public final static java.lang.String SOAP_ENV_PREFIX = "env"
-fld public final static java.lang.String URI_NS_SOAP_1_1_ENVELOPE = "http://schemas.xmlsoap.org/soap/envelope/"
-fld public final static java.lang.String URI_NS_SOAP_1_2_ENCODING = "http://www.w3.org/2003/05/soap-encoding"
-fld public final static java.lang.String URI_NS_SOAP_1_2_ENVELOPE = "http://www.w3.org/2003/05/soap-envelope"
-fld public final static java.lang.String URI_NS_SOAP_ENCODING = "http://schemas.xmlsoap.org/soap/encoding/"
-fld public final static java.lang.String URI_NS_SOAP_ENVELOPE = "http://schemas.xmlsoap.org/soap/envelope/"
-fld public final static java.lang.String URI_SOAP_1_2_ROLE_NEXT = "http://www.w3.org/2003/05/soap-envelope/role/next"
-fld public final static java.lang.String URI_SOAP_1_2_ROLE_NONE = "http://www.w3.org/2003/05/soap-envelope/role/none"
-fld public final static java.lang.String URI_SOAP_1_2_ROLE_ULTIMATE_RECEIVER = "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver"
-fld public final static java.lang.String URI_SOAP_ACTOR_NEXT = "http://schemas.xmlsoap.org/soap/actor/next"
-fld public final static javax.xml.namespace.QName SOAP_DATAENCODINGUNKNOWN_FAULT
-fld public final static javax.xml.namespace.QName SOAP_MUSTUNDERSTAND_FAULT
-fld public final static javax.xml.namespace.QName SOAP_RECEIVER_FAULT
-fld public final static javax.xml.namespace.QName SOAP_SENDER_FAULT
-fld public final static javax.xml.namespace.QName SOAP_VERSIONMISMATCH_FAULT
-
-CLSS public abstract interface javax.xml.soap.SOAPElement
-intf javax.xml.soap.Node
-intf org.w3c.dom.Element
-meth public abstract boolean removeAttribute(javax.xml.namespace.QName)
-meth public abstract boolean removeAttribute(javax.xml.soap.Name)
-meth public abstract boolean removeNamespaceDeclaration(java.lang.String)
-meth public abstract java.lang.String getAttributeValue(javax.xml.namespace.QName)
-meth public abstract java.lang.String getAttributeValue(javax.xml.soap.Name)
-meth public abstract java.lang.String getEncodingStyle()
-meth public abstract java.lang.String getNamespaceURI(java.lang.String)
-meth public abstract java.util.Iterator getAllAttributes()
-meth public abstract java.util.Iterator getAllAttributesAsQNames()
-meth public abstract java.util.Iterator getChildElements()
-meth public abstract java.util.Iterator getChildElements(javax.xml.namespace.QName)
-meth public abstract java.util.Iterator getChildElements(javax.xml.soap.Name)
-meth public abstract java.util.Iterator getNamespacePrefixes()
-meth public abstract java.util.Iterator getVisibleNamespacePrefixes()
-meth public abstract javax.xml.namespace.QName createQName(java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.namespace.QName getElementQName()
-meth public abstract javax.xml.soap.Name getElementName()
-meth public abstract javax.xml.soap.SOAPElement addAttribute(javax.xml.namespace.QName,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addAttribute(javax.xml.soap.Name,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addChildElement(java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addChildElement(java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addChildElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addChildElement(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addChildElement(javax.xml.soap.Name) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addChildElement(javax.xml.soap.SOAPElement) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addNamespaceDeclaration(java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement addTextNode(java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement setElementQName(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
-meth public abstract void removeContents()
-meth public abstract void setEncodingStyle(java.lang.String) throws javax.xml.soap.SOAPException
-
-CLSS public abstract interface javax.xml.soap.SOAPEnvelope
-intf javax.xml.soap.SOAPElement
-meth public abstract javax.xml.soap.Name createName(java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.Name createName(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPBody addBody() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPBody getBody() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPHeader addHeader() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPHeader getHeader() throws javax.xml.soap.SOAPException
-
-CLSS public javax.xml.soap.SOAPException
-cons public init()
-cons public init(java.lang.String)
-cons public init(java.lang.String,java.lang.Throwable)
-cons public init(java.lang.Throwable)
-meth public java.lang.String getMessage()
-meth public java.lang.Throwable getCause()
-meth public java.lang.Throwable initCause(java.lang.Throwable)
-supr java.lang.Exception
-hfds cause
-
-CLSS public abstract javax.xml.soap.SOAPFactory
-cons public init()
-meth public abstract javax.xml.soap.Detail createDetail() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.Name createName(java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.Name createName(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement createElement(java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement createElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPElement createElement(javax.xml.soap.Name) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPFault createFault() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPFault createFault(java.lang.String,javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPElement createElement(org.w3c.dom.Element) throws javax.xml.soap.SOAPException
-meth public static javax.xml.soap.SOAPFactory newInstance() throws javax.xml.soap.SOAPException
-meth public static javax.xml.soap.SOAPFactory newInstance(java.lang.String) throws javax.xml.soap.SOAPException
-supr java.lang.Object
-hfds SOAP_FACTORY_PROPERTY
-
-CLSS public abstract javax.xml.soap.SOAPMessage
-cons public init()
-fld public final static java.lang.String CHARACTER_SET_ENCODING = "javax.xml.soap.character-set-encoding"
-fld public final static java.lang.String WRITE_XML_DECLARATION = "javax.xml.soap.write-xml-declaration"
-meth public abstract boolean saveRequired()
-meth public abstract int countAttachments()
-meth public abstract java.lang.String getContentDescription()
-meth public abstract java.util.Iterator getAttachments()
-meth public abstract java.util.Iterator getAttachments(javax.xml.soap.MimeHeaders)
-meth public abstract javax.xml.soap.AttachmentPart createAttachmentPart()
-meth public abstract javax.xml.soap.AttachmentPart getAttachment(javax.xml.soap.SOAPElement) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.MimeHeaders getMimeHeaders()
-meth public abstract javax.xml.soap.SOAPPart getSOAPPart()
-meth public abstract void addAttachmentPart(javax.xml.soap.AttachmentPart)
-meth public abstract void removeAllAttachments()
-meth public abstract void removeAttachments(javax.xml.soap.MimeHeaders)
-meth public abstract void saveChanges() throws javax.xml.soap.SOAPException
-meth public abstract void setContentDescription(java.lang.String)
-meth public abstract void writeTo(java.io.OutputStream) throws java.io.IOException,javax.xml.soap.SOAPException
-meth public java.lang.Object getProperty(java.lang.String) throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.AttachmentPart createAttachmentPart(java.lang.Object,java.lang.String)
-meth public javax.xml.soap.AttachmentPart createAttachmentPart(javax.activation.DataHandler)
-meth public javax.xml.soap.SOAPBody getSOAPBody() throws javax.xml.soap.SOAPException
-meth public javax.xml.soap.SOAPHeader getSOAPHeader() throws javax.xml.soap.SOAPException
-meth public void setProperty(java.lang.String,java.lang.Object) throws javax.xml.soap.SOAPException
-supr java.lang.Object
-
-CLSS public abstract javax.xml.soap.SOAPPart
-cons public init()
-intf javax.xml.soap.Node
-intf org.w3c.dom.Document
-meth public abstract java.lang.String[] getMimeHeader(java.lang.String)
-meth public abstract java.util.Iterator getAllMimeHeaders()
-meth public abstract java.util.Iterator getMatchingMimeHeaders(java.lang.String[])
-meth public abstract java.util.Iterator getNonMatchingMimeHeaders(java.lang.String[])
-meth public abstract javax.xml.soap.SOAPEnvelope getEnvelope() throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.transform.Source getContent() throws javax.xml.soap.SOAPException
-meth public abstract void addMimeHeader(java.lang.String,java.lang.String)
-meth public abstract void removeAllMimeHeaders()
-meth public abstract void removeMimeHeader(java.lang.String)
-meth public abstract void setContent(javax.xml.transform.Source) throws javax.xml.soap.SOAPException
-meth public abstract void setMimeHeader(java.lang.String,java.lang.String)
-meth public java.lang.String getContentId()
-meth public java.lang.String getContentLocation()
-meth public void setContentId(java.lang.String)
-meth public void setContentLocation(java.lang.String)
-supr java.lang.Object
-
-CLSS public abstract interface javax.xml.stream.Location
-meth public abstract int getCharacterOffset()
-meth public abstract int getColumnNumber()
-meth public abstract int getLineNumber()
-meth public abstract java.lang.String getPublicId()
-meth public abstract java.lang.String getSystemId()
-
-CLSS public abstract interface javax.xml.stream.XMLStreamConstants
-fld public final static int ATTRIBUTE = 10
-fld public final static int CDATA = 12
-fld public final static int CHARACTERS = 4
-fld public final static int COMMENT = 5
-fld public final static int DTD = 11
-fld public final static int END_DOCUMENT = 8
-fld public final static int END_ELEMENT = 2
-fld public final static int ENTITY_DECLARATION = 15
-fld public final static int ENTITY_REFERENCE = 9
-fld public final static int NAMESPACE = 13
-fld public final static int NOTATION_DECLARATION = 14
-fld public final static int PROCESSING_INSTRUCTION = 3
-fld public final static int SPACE = 6
-fld public final static int START_DOCUMENT = 7
-fld public final static int START_ELEMENT = 1
-
-CLSS public abstract interface javax.xml.stream.XMLStreamReader
-intf javax.xml.stream.XMLStreamConstants
-meth public abstract boolean hasName()
-meth public abstract boolean hasNext() throws javax.xml.stream.XMLStreamException
-meth public abstract boolean hasText()
-meth public abstract boolean isAttributeSpecified(int)
-meth public abstract boolean isCharacters()
-meth public abstract boolean isEndElement()
-meth public abstract boolean isStandalone()
-meth public abstract boolean isStartElement()
-meth public abstract boolean isWhiteSpace()
-meth public abstract boolean standaloneSet()
-meth public abstract char[] getTextCharacters()
-meth public abstract int getAttributeCount()
-meth public abstract int getEventType()
-meth public abstract int getNamespaceCount()
-meth public abstract int getTextCharacters(int,char[],int,int) throws javax.xml.stream.XMLStreamException
-meth public abstract int getTextLength()
-meth public abstract int getTextStart()
-meth public abstract int next() throws javax.xml.stream.XMLStreamException
-meth public abstract int nextTag() throws javax.xml.stream.XMLStreamException
-meth public abstract java.lang.Object getProperty(java.lang.String)
-meth public abstract java.lang.String getAttributeLocalName(int)
-meth public abstract java.lang.String getAttributeNamespace(int)
-meth public abstract java.lang.String getAttributePrefix(int)
-meth public abstract java.lang.String getAttributeType(int)
-meth public abstract java.lang.String getAttributeValue(int)
-meth public abstract java.lang.String getAttributeValue(java.lang.String,java.lang.String)
-meth public abstract java.lang.String getCharacterEncodingScheme()
-meth public abstract java.lang.String getElementText() throws javax.xml.stream.XMLStreamException
-meth public abstract java.lang.String getEncoding()
-meth public abstract java.lang.String getLocalName()
-meth public abstract java.lang.String getNamespacePrefix(int)
-meth public abstract java.lang.String getNamespaceURI()
-meth public abstract java.lang.String getNamespaceURI(int)
-meth public abstract java.lang.String getNamespaceURI(java.lang.String)
-meth public abstract java.lang.String getPIData()
-meth public abstract java.lang.String getPITarget()
-meth public abstract java.lang.String getPrefix()
-meth public abstract java.lang.String getText()
-meth public abstract java.lang.String getVersion()
-meth public abstract javax.xml.namespace.NamespaceContext getNamespaceContext()
-meth public abstract javax.xml.namespace.QName getAttributeName(int)
-meth public abstract javax.xml.namespace.QName getName()
-meth public abstract javax.xml.stream.Location getLocation()
-meth public abstract void close() throws javax.xml.stream.XMLStreamException
-meth public abstract void require(int,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-
-CLSS public abstract interface javax.xml.stream.XMLStreamWriter
-meth public abstract java.lang.Object getProperty(java.lang.String)
-meth public abstract java.lang.String getPrefix(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract javax.xml.namespace.NamespaceContext getNamespaceContext()
-meth public abstract void close() throws javax.xml.stream.XMLStreamException
-meth public abstract void flush() throws javax.xml.stream.XMLStreamException
-meth public abstract void setDefaultNamespace(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void setNamespaceContext(javax.xml.namespace.NamespaceContext) throws javax.xml.stream.XMLStreamException
-meth public abstract void setPrefix(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeAttribute(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeAttribute(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeAttribute(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeCData(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeCharacters(char[],int,int) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeCharacters(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeComment(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeDTD(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeDefaultNamespace(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeEmptyElement(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeEmptyElement(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeEmptyElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeEndDocument() throws javax.xml.stream.XMLStreamException
-meth public abstract void writeEndElement() throws javax.xml.stream.XMLStreamException
-meth public abstract void writeEntityRef(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeNamespace(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeProcessingInstruction(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeProcessingInstruction(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeStartDocument() throws javax.xml.stream.XMLStreamException
-meth public abstract void writeStartDocument(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeStartDocument(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeStartElement(java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeStartElement(java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-meth public abstract void writeStartElement(java.lang.String,java.lang.String,java.lang.String) throws javax.xml.stream.XMLStreamException
-
-CLSS public abstract interface javax.xml.transform.Result
-fld public final static java.lang.String PI_DISABLE_OUTPUT_ESCAPING = "javax.xml.transform.disable-output-escaping"
-fld public final static java.lang.String PI_ENABLE_OUTPUT_ESCAPING = "javax.xml.transform.enable-output-escaping"
-meth public abstract java.lang.String getSystemId()
-meth public abstract void setSystemId(java.lang.String)
-
-CLSS public abstract interface javax.xml.transform.Source
-meth public abstract java.lang.String getSystemId()
-meth public abstract void setSystemId(java.lang.String)
-
-CLSS public javax.xml.transform.sax.SAXResult
-cons public init()
-cons public init(org.xml.sax.ContentHandler)
-fld public final static java.lang.String FEATURE = "http://javax.xml.transform.sax.SAXResult/feature"
-intf javax.xml.transform.Result
-meth public java.lang.String getSystemId()
-meth public org.xml.sax.ContentHandler getHandler()
-meth public org.xml.sax.ext.LexicalHandler getLexicalHandler()
-meth public void setHandler(org.xml.sax.ContentHandler)
-meth public void setLexicalHandler(org.xml.sax.ext.LexicalHandler)
-meth public void setSystemId(java.lang.String)
-supr java.lang.Object
-
-CLSS public javax.xml.transform.sax.SAXSource
-cons public init()
-cons public init(org.xml.sax.InputSource)
-cons public init(org.xml.sax.XMLReader,org.xml.sax.InputSource)
-fld public final static java.lang.String FEATURE = "http://javax.xml.transform.sax.SAXSource/feature"
-intf javax.xml.transform.Source
-meth public java.lang.String getSystemId()
-meth public org.xml.sax.InputSource getInputSource()
-meth public org.xml.sax.XMLReader getXMLReader()
-meth public static org.xml.sax.InputSource sourceToInputSource(javax.xml.transform.Source)
-meth public void setInputSource(org.xml.sax.InputSource)
-meth public void setSystemId(java.lang.String)
-meth public void setXMLReader(org.xml.sax.XMLReader)
-supr java.lang.Object
-
-CLSS public abstract interface javax.xml.ws.Binding
-meth public abstract java.lang.String getBindingID()
-meth public abstract java.util.List<javax.xml.ws.handler.Handler> getHandlerChain()
-meth public abstract void setHandlerChain(java.util.List<javax.xml.ws.handler.Handler>)
-
-CLSS public abstract interface javax.xml.ws.BindingProvider
-fld public final static java.lang.String ENDPOINT_ADDRESS_PROPERTY = "javax.xml.ws.service.endpoint.address"
-fld public final static java.lang.String PASSWORD_PROPERTY = "javax.xml.ws.security.auth.password"
-fld public final static java.lang.String SESSION_MAINTAIN_PROPERTY = "javax.xml.ws.session.maintain"
-fld public final static java.lang.String SOAPACTION_URI_PROPERTY = "javax.xml.ws.soap.http.soapaction.uri"
-fld public final static java.lang.String SOAPACTION_USE_PROPERTY = "javax.xml.ws.soap.http.soapaction.use"
-fld public final static java.lang.String USERNAME_PROPERTY = "javax.xml.ws.security.auth.username"
-meth public abstract <%0 extends javax.xml.ws.EndpointReference> {%%0} getEndpointReference(java.lang.Class<{%%0}>)
-meth public abstract java.util.Map<java.lang.String,java.lang.Object> getRequestContext()
-meth public abstract java.util.Map<java.lang.String,java.lang.Object> getResponseContext()
-meth public abstract javax.xml.ws.Binding getBinding()
-meth public abstract javax.xml.ws.EndpointReference getEndpointReference()
-
-CLSS public abstract javax.xml.ws.EndpointReference
-cons protected init()
-meth public !varargs <%0 extends java.lang.Object> {%%0} getPort(java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public abstract void writeTo(javax.xml.transform.Result)
-meth public java.lang.String toString()
-meth public static javax.xml.ws.EndpointReference readFrom(javax.xml.transform.Source)
-supr java.lang.Object
-
 CLSS public javax.xml.ws.WebServiceException
 cons public init()
 cons public init(java.lang.String)
@@ -6295,219 +2506,6 @@ cons public init(java.lang.String,java.lang.Throwable)
 cons public init(java.lang.Throwable)
 supr java.lang.RuntimeException
 
-CLSS public abstract javax.xml.ws.WebServiceFeature
-cons protected init()
-fld protected boolean enabled
-meth public abstract java.lang.String getID()
-meth public boolean isEnabled()
-supr java.lang.Object
-
-CLSS public abstract javax.xml.ws.spi.Provider
-cons protected init()
-fld public final static java.lang.String JAXWSPROVIDER_PROPERTY = "javax.xml.ws.spi.Provider"
-meth public !varargs javax.xml.ws.Endpoint createAndPublishEndpoint(java.lang.String,java.lang.Object,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Class<?>,javax.xml.ws.spi.Invoker,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Object,javax.xml.ws.WebServiceFeature[])
-meth public !varargs javax.xml.ws.spi.ServiceDelegate createServiceDelegate(java.net.URL,javax.xml.namespace.QName,java.lang.Class<? extends javax.xml.ws.Service>,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs <%0 extends java.lang.Object> {%%0} getPort(javax.xml.ws.EndpointReference,java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public abstract javax.xml.ws.Endpoint createAndPublishEndpoint(java.lang.String,java.lang.Object)
-meth public abstract javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Object)
-meth public abstract javax.xml.ws.EndpointReference readEndpointReference(javax.xml.transform.Source)
-meth public abstract javax.xml.ws.spi.ServiceDelegate createServiceDelegate(java.net.URL,javax.xml.namespace.QName,java.lang.Class<? extends javax.xml.ws.Service>)
-meth public abstract javax.xml.ws.wsaddressing.W3CEndpointReference createW3CEndpointReference(java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>)
-meth public javax.xml.ws.wsaddressing.W3CEndpointReference createW3CEndpointReference(java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>,java.util.List<org.w3c.dom.Element>,java.util.Map<javax.xml.namespace.QName,java.lang.String>)
-meth public static javax.xml.ws.spi.Provider provider()
-supr java.lang.Object
-hfds DEFAULT_JAXWSPROVIDER,iteratorMethod,loadMethod
-
-CLSS public abstract javax.xml.ws.spi.ServiceDelegate
-cons protected init()
-meth public abstract !varargs <%0 extends java.lang.Object> javax.xml.ws.Dispatch<{%%0}> createDispatch(javax.xml.namespace.QName,java.lang.Class<{%%0}>,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs <%0 extends java.lang.Object> javax.xml.ws.Dispatch<{%%0}> createDispatch(javax.xml.ws.EndpointReference,java.lang.Class<{%%0}>,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs <%0 extends java.lang.Object> {%%0} getPort(java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs <%0 extends java.lang.Object> {%%0} getPort(javax.xml.namespace.QName,java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs <%0 extends java.lang.Object> {%%0} getPort(javax.xml.ws.EndpointReference,java.lang.Class<{%%0}>,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs javax.xml.ws.Dispatch<java.lang.Object> createDispatch(javax.xml.namespace.QName,javax.xml.bind.JAXBContext,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
-meth public abstract !varargs javax.xml.ws.Dispatch<java.lang.Object> createDispatch(javax.xml.ws.EndpointReference,javax.xml.bind.JAXBContext,javax.xml.ws.Service$Mode,javax.xml.ws.WebServiceFeature[])
-meth public abstract <%0 extends java.lang.Object> javax.xml.ws.Dispatch<{%%0}> createDispatch(javax.xml.namespace.QName,java.lang.Class<{%%0}>,javax.xml.ws.Service$Mode)
-meth public abstract <%0 extends java.lang.Object> {%%0} getPort(java.lang.Class<{%%0}>)
-meth public abstract <%0 extends java.lang.Object> {%%0} getPort(javax.xml.namespace.QName,java.lang.Class<{%%0}>)
-meth public abstract java.net.URL getWSDLDocumentLocation()
-meth public abstract java.util.Iterator<javax.xml.namespace.QName> getPorts()
-meth public abstract java.util.concurrent.Executor getExecutor()
-meth public abstract javax.xml.namespace.QName getServiceName()
-meth public abstract javax.xml.ws.Dispatch<java.lang.Object> createDispatch(javax.xml.namespace.QName,javax.xml.bind.JAXBContext,javax.xml.ws.Service$Mode)
-meth public abstract javax.xml.ws.handler.HandlerResolver getHandlerResolver()
-meth public abstract void addPort(javax.xml.namespace.QName,java.lang.String,java.lang.String)
-meth public abstract void setExecutor(java.util.concurrent.Executor)
-meth public abstract void setHandlerResolver(javax.xml.ws.handler.HandlerResolver)
-supr java.lang.Object
-
-CLSS public abstract interface !annotation javax.xml.ws.spi.WebServiceFeatureAnnotation
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean()
-meth public abstract java.lang.String id()
-
-CLSS public abstract interface !annotation org.glassfish.gmbal.ManagedData
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String name()
-
-CLSS public abstract org.jvnet.staxex.StreamingDataHandler
-cons public init(java.lang.Object,java.lang.String)
-cons public init(java.net.URL)
-cons public init(javax.activation.DataSource)
-intf java.io.Closeable
-meth public abstract java.io.InputStream readOnce() throws java.io.IOException
-meth public abstract void close() throws java.io.IOException
-meth public abstract void moveTo(java.io.File) throws java.io.IOException
-supr javax.activation.DataHandler
-
-CLSS public abstract interface org.jvnet.ws.message.DistributedPropertySet
-intf org.jvnet.ws.message.PropertySet
-meth public abstract <%0 extends org.jvnet.ws.message.PropertySet> {%%0} getSatellite(java.lang.Class<{%%0}>)
- anno 0 com.sun.istack.Nullable()
-meth public abstract void addSatellite(java.lang.Class,org.jvnet.ws.message.PropertySet)
-meth public abstract void addSatellite(org.jvnet.ws.message.PropertySet)
-meth public abstract void copySatelliteInto(org.jvnet.ws.message.MessageContext)
-meth public abstract void removeSatellite(org.jvnet.ws.message.PropertySet)
-
-CLSS public abstract interface org.jvnet.ws.message.MessageContext
-intf org.jvnet.ws.message.DistributedPropertySet
-meth public abstract <%0 extends org.jvnet.ws.message.PropertySet> {%%0} getSatellite(java.lang.Class<{%%0}>)
-meth public abstract javax.xml.soap.SOAPMessage getSOAPMessage() throws javax.xml.soap.SOAPException
-meth public abstract void addSatellite(org.jvnet.ws.message.PropertySet)
-meth public abstract void copySatelliteInto(org.jvnet.ws.message.MessageContext)
-meth public abstract void removeSatellite(org.jvnet.ws.message.PropertySet)
-
-CLSS public abstract interface org.jvnet.ws.message.PropertySet
-innr public abstract interface static !annotation Property
-meth public abstract boolean containsKey(java.lang.Object)
-meth public abstract boolean supports(java.lang.Object)
-meth public abstract java.lang.Object get(java.lang.Object)
-meth public abstract java.lang.Object put(java.lang.String,java.lang.Object)
-meth public abstract java.lang.Object remove(java.lang.Object)
-meth public abstract java.util.Map<java.lang.String,java.lang.Object> createMapView()
-
-CLSS public abstract interface org.w3c.dom.Document
-intf org.w3c.dom.Node
-meth public abstract boolean getStrictErrorChecking()
-meth public abstract boolean getXmlStandalone()
-meth public abstract java.lang.String getDocumentURI()
-meth public abstract java.lang.String getInputEncoding()
-meth public abstract java.lang.String getXmlEncoding()
-meth public abstract java.lang.String getXmlVersion()
-meth public abstract org.w3c.dom.Attr createAttribute(java.lang.String)
-meth public abstract org.w3c.dom.Attr createAttributeNS(java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.CDATASection createCDATASection(java.lang.String)
-meth public abstract org.w3c.dom.Comment createComment(java.lang.String)
-meth public abstract org.w3c.dom.DOMConfiguration getDomConfig()
-meth public abstract org.w3c.dom.DOMImplementation getImplementation()
-meth public abstract org.w3c.dom.DocumentFragment createDocumentFragment()
-meth public abstract org.w3c.dom.DocumentType getDoctype()
-meth public abstract org.w3c.dom.Element createElement(java.lang.String)
-meth public abstract org.w3c.dom.Element createElementNS(java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.Element getDocumentElement()
-meth public abstract org.w3c.dom.Element getElementById(java.lang.String)
-meth public abstract org.w3c.dom.EntityReference createEntityReference(java.lang.String)
-meth public abstract org.w3c.dom.Node adoptNode(org.w3c.dom.Node)
-meth public abstract org.w3c.dom.Node importNode(org.w3c.dom.Node,boolean)
-meth public abstract org.w3c.dom.Node renameNode(org.w3c.dom.Node,java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.NodeList getElementsByTagName(java.lang.String)
-meth public abstract org.w3c.dom.NodeList getElementsByTagNameNS(java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.ProcessingInstruction createProcessingInstruction(java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.Text createTextNode(java.lang.String)
-meth public abstract void normalizeDocument()
-meth public abstract void setDocumentURI(java.lang.String)
-meth public abstract void setStrictErrorChecking(boolean)
-meth public abstract void setXmlStandalone(boolean)
-meth public abstract void setXmlVersion(java.lang.String)
-
-CLSS public abstract interface org.w3c.dom.Element
-intf org.w3c.dom.Node
-meth public abstract boolean hasAttribute(java.lang.String)
-meth public abstract boolean hasAttributeNS(java.lang.String,java.lang.String)
-meth public abstract java.lang.String getAttribute(java.lang.String)
-meth public abstract java.lang.String getAttributeNS(java.lang.String,java.lang.String)
-meth public abstract java.lang.String getTagName()
-meth public abstract org.w3c.dom.Attr getAttributeNode(java.lang.String)
-meth public abstract org.w3c.dom.Attr getAttributeNodeNS(java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.Attr removeAttributeNode(org.w3c.dom.Attr)
-meth public abstract org.w3c.dom.Attr setAttributeNode(org.w3c.dom.Attr)
-meth public abstract org.w3c.dom.Attr setAttributeNodeNS(org.w3c.dom.Attr)
-meth public abstract org.w3c.dom.NodeList getElementsByTagName(java.lang.String)
-meth public abstract org.w3c.dom.NodeList getElementsByTagNameNS(java.lang.String,java.lang.String)
-meth public abstract org.w3c.dom.TypeInfo getSchemaTypeInfo()
-meth public abstract void removeAttribute(java.lang.String)
-meth public abstract void removeAttributeNS(java.lang.String,java.lang.String)
-meth public abstract void setAttribute(java.lang.String,java.lang.String)
-meth public abstract void setAttributeNS(java.lang.String,java.lang.String,java.lang.String)
-meth public abstract void setIdAttribute(java.lang.String,boolean)
-meth public abstract void setIdAttributeNS(java.lang.String,java.lang.String,boolean)
-meth public abstract void setIdAttributeNode(org.w3c.dom.Attr,boolean)
-
-CLSS public abstract interface org.w3c.dom.Node
-fld public final static short ATTRIBUTE_NODE = 2
-fld public final static short CDATA_SECTION_NODE = 4
-fld public final static short COMMENT_NODE = 8
-fld public final static short DOCUMENT_FRAGMENT_NODE = 11
-fld public final static short DOCUMENT_NODE = 9
-fld public final static short DOCUMENT_POSITION_CONTAINED_BY = 16
-fld public final static short DOCUMENT_POSITION_CONTAINS = 8
-fld public final static short DOCUMENT_POSITION_DISCONNECTED = 1
-fld public final static short DOCUMENT_POSITION_FOLLOWING = 4
-fld public final static short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 32
-fld public final static short DOCUMENT_POSITION_PRECEDING = 2
-fld public final static short DOCUMENT_TYPE_NODE = 10
-fld public final static short ELEMENT_NODE = 1
-fld public final static short ENTITY_NODE = 6
-fld public final static short ENTITY_REFERENCE_NODE = 5
-fld public final static short NOTATION_NODE = 12
-fld public final static short PROCESSING_INSTRUCTION_NODE = 7
-fld public final static short TEXT_NODE = 3
-meth public abstract boolean hasAttributes()
-meth public abstract boolean hasChildNodes()
-meth public abstract boolean isDefaultNamespace(java.lang.String)
-meth public abstract boolean isEqualNode(org.w3c.dom.Node)
-meth public abstract boolean isSameNode(org.w3c.dom.Node)
-meth public abstract boolean isSupported(java.lang.String,java.lang.String)
-meth public abstract java.lang.Object getFeature(java.lang.String,java.lang.String)
-meth public abstract java.lang.Object getUserData(java.lang.String)
-meth public abstract java.lang.Object setUserData(java.lang.String,java.lang.Object,org.w3c.dom.UserDataHandler)
-meth public abstract java.lang.String getBaseURI()
-meth public abstract java.lang.String getLocalName()
-meth public abstract java.lang.String getNamespaceURI()
-meth public abstract java.lang.String getNodeName()
-meth public abstract java.lang.String getNodeValue()
-meth public abstract java.lang.String getPrefix()
-meth public abstract java.lang.String getTextContent()
-meth public abstract java.lang.String lookupNamespaceURI(java.lang.String)
-meth public abstract java.lang.String lookupPrefix(java.lang.String)
-meth public abstract org.w3c.dom.Document getOwnerDocument()
-meth public abstract org.w3c.dom.NamedNodeMap getAttributes()
-meth public abstract org.w3c.dom.Node appendChild(org.w3c.dom.Node)
-meth public abstract org.w3c.dom.Node cloneNode(boolean)
-meth public abstract org.w3c.dom.Node getFirstChild()
-meth public abstract org.w3c.dom.Node getLastChild()
-meth public abstract org.w3c.dom.Node getNextSibling()
-meth public abstract org.w3c.dom.Node getParentNode()
-meth public abstract org.w3c.dom.Node getPreviousSibling()
-meth public abstract org.w3c.dom.Node insertBefore(org.w3c.dom.Node,org.w3c.dom.Node)
-meth public abstract org.w3c.dom.Node removeChild(org.w3c.dom.Node)
-meth public abstract org.w3c.dom.Node replaceChild(org.w3c.dom.Node,org.w3c.dom.Node)
-meth public abstract org.w3c.dom.NodeList getChildNodes()
-meth public abstract short compareDocumentPosition(org.w3c.dom.Node)
-meth public abstract short getNodeType()
-meth public abstract void normalize()
-meth public abstract void setNodeValue(java.lang.String)
-meth public abstract void setPrefix(java.lang.String)
-meth public abstract void setTextContent(java.lang.String)
-
 CLSS public abstract interface org.xml.sax.ContentHandler
 meth public abstract void characters(char[],int,int) throws org.xml.sax.SAXException
 meth public abstract void endDocument() throws org.xml.sax.SAXException
@@ -6554,31 +2552,6 @@ meth public abstract void setErrorHandler(org.xml.sax.ErrorHandler)
 meth public abstract void setFeature(java.lang.String,boolean) throws org.xml.sax.SAXNotRecognizedException,org.xml.sax.SAXNotSupportedException
 meth public abstract void setProperty(java.lang.String,java.lang.Object) throws org.xml.sax.SAXNotRecognizedException,org.xml.sax.SAXNotSupportedException
 
-CLSS public org.xml.sax.helpers.DefaultHandler
-cons public init()
-intf org.xml.sax.ContentHandler
-intf org.xml.sax.DTDHandler
-intf org.xml.sax.EntityResolver
-intf org.xml.sax.ErrorHandler
-meth public org.xml.sax.InputSource resolveEntity(java.lang.String,java.lang.String) throws java.io.IOException,org.xml.sax.SAXException
-meth public void characters(char[],int,int) throws org.xml.sax.SAXException
-meth public void endDocument() throws org.xml.sax.SAXException
-meth public void endElement(java.lang.String,java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void endPrefixMapping(java.lang.String) throws org.xml.sax.SAXException
-meth public void error(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException
-meth public void fatalError(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException
-meth public void ignorableWhitespace(char[],int,int) throws org.xml.sax.SAXException
-meth public void notationDecl(java.lang.String,java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void processingInstruction(java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void setDocumentLocator(org.xml.sax.Locator)
-meth public void skippedEntity(java.lang.String) throws org.xml.sax.SAXException
-meth public void startDocument() throws org.xml.sax.SAXException
-meth public void startElement(java.lang.String,java.lang.String,java.lang.String,org.xml.sax.Attributes) throws org.xml.sax.SAXException
-meth public void startPrefixMapping(java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void unparsedEntityDecl(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.xml.sax.SAXException
-meth public void warning(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException
-supr java.lang.Object
-
 CLSS public org.xml.sax.helpers.XMLFilterImpl
 cons public init()
 cons public init(org.xml.sax.XMLReader)
diff --git a/java/websvc.jaxws21/nbproject/project.properties b/java/websvc.jaxws21/nbproject/project.properties
index deb4255..9bc1cd4 100644
--- a/java/websvc.jaxws21/nbproject/project.properties
+++ b/java/websvc.jaxws21/nbproject/project.properties
@@ -23,7 +23,7 @@ jnlp.indirect.jars=\
     modules/ext/jaxws22/FastInfoset.jar,\
     modules/ext/jaxws22/gmbal-api-only.jar,\
     modules/ext/jaxws22/ha-api.jar,\
-    modules/ext/jaxws22/javax.mail_1.4.jar,\
+    modules/ext/jaxws22/jakarta.mail.jar,\
     modules/ext/jaxws22/jaxws-rt.jar,\
     modules/ext/jaxws22/jaxws-tools.jar,\
     modules/ext/jaxws22/management-api.jar,\
@@ -33,26 +33,26 @@ jnlp.indirect.jars=\
     modules/ext/jaxws22/stax-ex.jar,\
     modules/ext/jaxws22/stax2-api.jar,\
     modules/ext/jaxws22/streambuffer.jar,\
-    modules/ext/jaxws22/woodstox-core-asl.jar,\
+    modules/ext/jaxws22/woodstox-core.jar,\
     docs/jaxws-api-doc.zip
 
-release.external/FastInfoset-1.2.12.jar=modules/ext/jaxws22/FastInfoset.jar
-release.external/gmbal-api-only-3.1.0-b001.jar=modules/ext/jaxws22/gmbal-api-only.jar
-release.external/ha-api-3.1.8.jar=modules/ext/jaxws22/ha-api.jar
-release.external/mail-1.4.jar=modules/ext/jaxws22/javax.mail_1.4.jar
-release.external/jaxws-rt-2.2.6-1.jar=modules/ext/jaxws22/jaxws-rt.jar
-release.external/jaxws-tools-2.2.6-1.jar=modules/ext/jaxws22/jaxws-tools.jar
-release.external/management-api-3.0.0-b012.jar=modules/ext/jaxws22/management-api.jar
-release.external/mimepull-1.8.jar=modules/ext/jaxws22/mimepull.jar
-release.external/policy-2.3.1.jar=modules/ext/jaxws22/policy.jar
-release.external/saaj-impl-1.3.18.jar=modules/ext/jaxws22/saaj-impl.jar
-release.external/stax-ex-1.7.jar=modules/ext/jaxws22/stax-ex.jar
-release.external/stax2-api-3.1.1.jar=modules/ext/jaxws22/stax2-api.jar
-release.external/streambuffer-1.4.jar=modules/ext/jaxws22/streambuffer.jar
-release.external/woodstox-core-asl-4.1.2.jar=modules/ext/jaxws22/woodstox-core-asl.jar
+release.external/FastInfoset-2.0.0.jar=modules/ext/jaxws22/FastInfoset.jar
+release.external/gmbal-api-only-4.0.3.jar=modules/ext/jaxws22/gmbal-api-only.jar
+release.external/ha-api-3.1.13.jar=modules/ext/jaxws22/ha-api.jar
+release.external/jakarta.mail-1.6.7.jar=modules/ext/jaxws22/jakarta.mail.jar
+release.external/jaxws-rt-2.3.5.jar=modules/ext/jaxws22/jaxws-rt.jar
+release.external/jaxws-tools-2.3.5.jar=modules/ext/jaxws22/jaxws-tools.jar
+release.external/management-api-3.2.3.jar=modules/ext/jaxws22/management-api.jar
+release.external/mimepull-1.9.15.jar=modules/ext/jaxws22/mimepull.jar
+release.external/policy-2.7.10.jar=modules/ext/jaxws22/policy.jar
+release.external/saaj-impl-1.5.3.jar=modules/ext/jaxws22/saaj-impl.jar
+release.external/stax-ex-1.8.3.jar=modules/ext/jaxws22/stax-ex.jar
+release.external/stax2-api-4.2.1.jar=modules/ext/jaxws22/stax2-api.jar
+release.external/streambuffer-1.5.10.jar=modules/ext/jaxws22/streambuffer.jar
+release.external/woodstox-core-6.2.8.jar=modules/ext/jaxws22/woodstox-core.jar
 
-# JAX-WS 2.1 Javadoc
-release.external/jaxws-api-2.2.6-javadoc.jar=docs/jaxws-api-doc.zip
+# JAX-WS 2.3 Javadoc
+release.external/jakarta.xml.ws-api-2.3.3-javadoc.jar=docs/jaxws-api-doc.zip
 
 # throws NPE for some reason
 sigtest.gen.fail.on.error=false
diff --git a/java/websvc.jaxws21/nbproject/project.xml b/java/websvc.jaxws21/nbproject/project.xml
index f5ea4fc..918b575 100644
--- a/java/websvc.jaxws21/nbproject/project.xml
+++ b/java/websvc.jaxws21/nbproject/project.xml
@@ -52,34 +52,14 @@
             <friend-packages>
                 <friend>org.netbeans.modules.websvc.jaxwsmodel</friend>
                 <friend>org.netbeans.modules.websvc.manager</friend>
-                <package>com.sun.tools.ws.processor</package>
-                <package>com.sun.tools.ws.processor.generator</package>
                 <package>com.sun.tools.ws.processor.model</package>
-                <package>com.sun.tools.ws.processor.model.exporter</package>
                 <package>com.sun.tools.ws.processor.model.java</package>
-                <package>com.sun.tools.ws.processor.model.jaxb</package>
                 <package>com.sun.tools.ws.processor.modeler</package>
-                <package>com.sun.tools.ws.processor.modeler.annotation</package>
                 <package>com.sun.tools.ws.processor.modeler.wsdl</package>
-                <package>com.sun.tools.ws.processor.util</package>
-                <package>com.sun.tools.ws.util.xml</package>
                 <package>com.sun.tools.ws.wscompile</package>
                 <package>com.sun.tools.ws.wsdl.document.soap</package>
                 <package>com.sun.tools.ws.wsdl.parser</package>
-                <package>com.sun.xml.messaging.saaj.soap</package>
-                <package>com.sun.xml.ws</package>
-                <package>com.sun.xml.ws.api</package>
-                <package>com.sun.xml.ws.api.addressing</package>
-                <package>com.sun.xml.ws.api.message</package>
-                <package>com.sun.xml.ws.developer</package>
-                <package>com.sun.xml.ws.encoding.soap</package>
-                <package>com.sun.xml.ws.encoding.soap.streaming</package>
-                <package>com.sun.xml.ws.policy.sourcemodel.wspolicy</package>
-                <package>com.sun.xml.ws.spi</package>
                 <package>com.sun.xml.ws.util</package>
-                <package>com.sun.xml.ws.util.exception</package>
-                <package>com.sun.xml.ws.util.localization</package>
-                <package>com.sun.xml.ws.util.xml</package>
             </friend-packages>
             <class-path-extension>
                 <runtime-relative-path>ext/jaxws22/FastInfoset.jar</runtime-relative-path>
@@ -91,7 +71,7 @@
                 <runtime-relative-path>ext/jaxws22/ha-api.jar</runtime-relative-path>
             </class-path-extension>
             <class-path-extension>
-                <runtime-relative-path>ext/jaxws22/javax.mail_1.4.jar</runtime-relative-path>
+                <runtime-relative-path>ext/jaxws22/jakarta.mail.jar</runtime-relative-path>
             </class-path-extension>
             <class-path-extension>
                 <runtime-relative-path>ext/jaxws22/jaxws-rt.jar</runtime-relative-path>
@@ -120,6 +100,9 @@
             <class-path-extension>
                 <runtime-relative-path>ext/jaxws22/streambuffer.jar</runtime-relative-path>
             </class-path-extension>
+            <class-path-extension>
+                <runtime-relative-path>ext/jaxws22/woodstox-core.jar</runtime-relative-path>
+            </class-path-extension>
         </data>
     </configuration>
 </project>
diff --git a/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/Bundle.properties b/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/Bundle.properties
index d6de2e3..c9ef7c2 100644
--- a/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/Bundle.properties
+++ b/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/Bundle.properties
@@ -16,9 +16,9 @@
 # under the License.
 
 # module descritpion
-OpenIDE-Module-Name=JAX-WS 2.2 Library
+OpenIDE-Module-Name=JAX-WS 2.3 Library
 OpenIDE-Module-Display-Category=Web Services
-OpenIDE-Module-Short-Description=Installs the JAX-WS 2.2 client libraries
-OpenIDE-Module-Long-Description=Installs the JAX-WS 2.2 client libraries
+OpenIDE-Module-Short-Description=Installs the JAX-WS 2.3 client libraries
+OpenIDE-Module-Long-Description=Installs the JAX-WS 2.3 client libraries
 # library display name
-jaxws21=JAX-WS 2.2.6
+jaxws21=JAX-WS 2.3.5
diff --git a/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/jaxws21.xml b/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/jaxws21.xml
index 8b52015..3591396 100644
--- a/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/jaxws21.xml
+++ b/java/websvc.jaxws21/src/org/netbeans/modules/websvc/jaxws21/jaxws21.xml
@@ -27,12 +27,13 @@
     <localizing-bundle>org/netbeans/modules/websvc/jaxws21/Bundle</localizing-bundle>
     <volume>
         <type>classpath</type>
-        <resource>jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-impl.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-xjc.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jakarta.jws-api.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jakarta.xml.soap-api.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jakarta.xml.ws-api.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/FastInfoset.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/gmbal-api-only.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/ha-api.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/javax.mail_1.4.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/jakarta.mail.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/jaxws-rt.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/jaxws-tools.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/management-api.jar!/</resource>
@@ -42,13 +43,11 @@
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/stax-ex.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/stax2-api.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/streambuffer.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/woodstox-core-asl.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jaxws-api.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/jsr181-api.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/javax.annotation.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21api/modules/ext/jaxws22/api/saaj-api.jar!/</resource>
-        <resource>jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/activation.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.modules.websvc.jaxws21/modules/ext/jaxws22/woodstox-core.jar!/</resource>
         <resource>jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/api/jaxb-api.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.modules.xml.jaxb.api/modules/ext/jaxb/activation.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-impl.jar!/</resource>
+        <resource>jar:nbinst://org.netbeans.libs.jaxb/modules/ext/jaxb/jaxb-xjc.jar!/</resource>
     </volume>
     <volume>
         <type>javadoc</type>
@@ -59,8 +58,8 @@
         <property>
             <name>maven-dependencies</name>
             <value>
-                javax.jws:jsr181-api:1.0-MR1:jar
-                com.sun.xml.ws:jaxws-rt:2.2.6-1:jar
+                jakarta.jws:jakarta.jws-api:2.1.0:jar
+                com.sun.xml.ws:jaxws-rt:2.3.5:jar
             </value>
         </property>
     </properties>    
diff --git a/java/websvc.jaxws21api/arch.xml b/java/websvc.jaxws21api/arch.xml
index 3d796b3..06a2ff3 100644
--- a/java/websvc.jaxws21api/arch.xml
+++ b/java/websvc.jaxws21api/arch.xml
@@ -49,7 +49,7 @@
 -->
  <answer id="arch-overall">
   <p>
-   The API is useful for plugins that want to integrate JAX-WS 2.1 and JAXB 2.1 technology.
+   The API is useful for plugins that want to integrate JAX-WS 2.3 and JAXB 2.3 technology.
   </p>
  </answer>
 
@@ -70,7 +70,7 @@
 -->
  <answer id="arch-quality">
   <p>
-   This API is in fact a wraper library module for JAX-WS 2.1 and JAXB 2.1 API libraries.
+   This API is in fact a wraper library module for JAX-WS 2.3 and JAXB 2.3 API libraries.
    There is no need for testing this library.
   </p>
  </answer>
diff --git a/java/websvc.jaxws21api/external/binaries-list b/java/websvc.jaxws21api/external/binaries-list
index 4b25a33..3d5ede9 100644
--- a/java/websvc.jaxws21api/external/binaries-list
+++ b/java/websvc.jaxws21api/external/binaries-list
@@ -14,4 +14,7 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-D64C40E770C95C2A6994081C00CCD489C0AA20C9 jaxws-2.2.6-api.zip
+
+529FE0136BE92861E5A255FBC99146F1943C4332 jakarta.xml.ws:jakarta.xml.ws-api:2.3.3
+4F71FA8CA30BE4D04BA658339DF3C927FA21209A jakarta.xml.soap:jakarta.xml.soap-api:1.4.2
+7D283EF13E49C1422701E30639371EDCA788C609 jakarta.jws:jakarta.jws-api:2.1.0
diff --git a/java/websvc.jaxws21api/external/jakarta.xml.ws-api-2.3.3-license.txt b/java/websvc.jaxws21api/external/jakarta.xml.ws-api-2.3.3-license.txt
new file mode 100644
index 0000000..a2e6ca8
--- /dev/null
+++ b/java/websvc.jaxws21api/external/jakarta.xml.ws-api-2.3.3-license.txt
@@ -0,0 +1,36 @@
+Name: JAX-WS API
+Description: Jakarta XML Web Services
+Version: 2.3.3
+Origin: Eclipse Foundation
+URL: https://projects.eclipse.org/projects/ee4j.jaxws
+License: EDL-1.0
+Files: jakarta.xml.ws-api-2.3.3.jar jakarta.xml.soap-api-1.4.2.jar jakarta.jws-api-2.1.0.jar
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright notice,
+      this list of conditions and the following disclaimer in the documentation
+      and/or other materials provided with the distribution.
+    * Neither the name of the Eclipse Foundation, Inc. nor the names of its
+      contributors may be used to endorse or promote products derived from this
+      software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/java/websvc.jaxws21api/external/jaxws-2.2.6-api-license.txt b/java/websvc.jaxws21api/external/jaxws-2.2.6-api-license.txt
deleted file mode 100644
index 0a7a744..0000000
--- a/java/websvc.jaxws21api/external/jaxws-2.2.6-api-license.txt
+++ /dev/null
@@ -1,356 +0,0 @@
-Name: JAX-WS
-Description: JAX-WS Reference Implementation
-Version: 2.2.6
-Origin: Oracle
-URL: http://jax-ws.java.net/
-License: CDDL-1.1
-Files: jaxws-2.2.6-api.zip
-
-COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1
-
-1. Definitions.
-
-    1.1. "Contributor" means each individual or entity that creates or
-    contributes to the creation of Modifications.
-
-    1.2. "Contributor Version" means the combination of the Original
-    Software, prior Modifications used by a Contributor (if any), and the
-    Modifications made by that particular Contributor.
-
-    1.3. "Covered Software" means (a) the Original Software, or (b)
-    Modifications, or (c) the combination of files containing Original
-    Software with files containing Modifications, in each case including
-    portions thereof.
-
-    1.4. "Executable" means the Covered Software in any form other than
-    Source Code.
-
-    1.5. "Initial Developer" means the individual or entity that first makes
-    Original Software available under this License.
-
-    1.6. "Larger Work" means a work which combines Covered Software or
-    portions thereof with code not governed by the terms of this License.
-
-    1.7. "License" means this document.
-
-    1.8. "Licensable" means having the right to grant, to the maximum extent
-    possible, whether at the time of the initial grant or subsequently
-    acquired, any and all of the rights conveyed herein.
-
-    1.9. "Modifications" means the Source Code and Executable form of any of
-    the following:
-
-    A. Any file that results from an addition to, deletion from or
-    modification of the contents of a file containing Original Software or
-    previous Modifications;
-
-    B. Any new file that contains any part of the Original Software or
-    previous Modification; or
-
-    C. Any new file that is contributed or otherwise made available under
-    the terms of this License.
-
-    1.10. "Original Software" means the Source Code and Executable form of
-    computer software code that is originally released under this License.
-
-    1.11. "Patent Claims" means any patent claim(s), now owned or hereafter
-    acquired, including without limitation, method, process, and apparatus
-    claims, in any patent Licensable by grantor.
-
-    1.12. "Source Code" means (a) the common form of computer software code
-    in which modifications are made and (b) associated documentation
-    included in or with such code.
-
-    1.13. "You" (or "Your") means an individual or a legal entity exercising
-    rights under, and complying with all of the terms of, this License. For
-    legal entities, "You" includes any entity which controls, is controlled
-    by, or is under common control with You. For purposes of this
-    definition, "control" means (a) the power, direct or indirect, to cause
-    the direction or management of such entity, whether by contract or
-    otherwise, or (b) ownership of more than fifty percent (50%) of the
-    outstanding shares or beneficial ownership of such entity.
-
-2. License Grants.
-
-    2.1. The Initial Developer Grant.
-
-    Conditioned upon Your compliance with Section 3.1 below and subject to
-    third party intellectual property claims, the Initial Developer hereby
-    grants You a world-wide, royalty-free, non-exclusive license:
-
-    (a) under intellectual property rights (other than patent or trademark)
-    Licensable by Initial Developer, to use, reproduce, modify, display,
-    perform, sublicense and distribute the Original Software (or portions
-    thereof), with or without Modifications, and/or as part of a Larger
-    Work; and
-
-    (b) under Patent Claims infringed by the making, using or selling of
-    Original Software, to make, have made, use, practice, sell, and offer
-    for sale, and/or otherwise dispose of the Original Software (or portions
-    thereof).
-
-    (c) The licenses granted in Sections 2.1(a) and (b) are effective on the
-    date Initial Developer first distributes or otherwise makes the Original
-    Software available to a third party under the terms of this License.
-
-    (d) Notwithstanding Section 2.1(b) above, no patent license is granted:
-    (1) for code that You delete from the Original Software, or (2) for
-    infringements caused by: (i) the modification of the Original Software,
-    or (ii) the combination of the Original Software with other software or
-    devices.
-
-    2.2. Contributor Grant.
-
-    Conditioned upon Your compliance with Section 3.1 below and subject to
-    third party intellectual property claims, each Contributor hereby grants
-    You a world-wide, royalty-free, non-exclusive license:
-
-    (a) under intellectual property rights (other than patent or trademark)
-    Licensable by Contributor to use, reproduce, modify, display, perform,
-    sublicense and distribute the Modifications created by such Contributor
-    (or portions thereof), either on an unmodified basis, with other
-    Modifications, as Covered Software and/or as part of a Larger Work; and
-
-    (b) under Patent Claims infringed by the making, using, or selling of
-    Modifications made by that Contributor either alone and/or in
-    combination with its Contributor Version (or portions of such
-    combination), to make, use, sell, offer for sale, have made, and/or
-    otherwise dispose of: (1) Modifications made by that Contributor (or
-    portions thereof); and (2) the combination of Modifications made by that
-    Contributor with its Contributor Version (or portions of such
-    combination).
-
-    (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on
-    the date Contributor first distributes or otherwise makes the
-    Modifications available to a third party.
-
-    (d) Notwithstanding Section 2.2(b) above, no patent license is granted:
-    (1) for any code that Contributor has deleted from the Contributor
-    Version; (2) for infringements caused by: (i) third party modifications
-    of Contributor Version, or (ii) the combination of Modifications made by
-    that Contributor with other software (except as part of the Contributor
-    Version) or other devices; or (3) under Patent Claims infringed by
-    Covered Software in the absence of Modifications made by that
-    Contributor.
-
-3. Distribution Obligations.
-
-    3.1. Availability of Source Code.
-
-    Any Covered Software that You distribute or otherwise make available in
-    Executable form must also be made available in Source Code form and that
-    Source Code form must be distributed only under the terms of this
-    License. You must include a copy of this License with every copy of the
-    Source Code form of the Covered Software You distribute or otherwise
-    make available. You must inform recipients of any such Covered Software
-    in Executable form as to how they can obtain such Covered Software in
-    Source Code form in a reasonable manner on or through a medium
-    customarily used for software exchange.
-
-    3.2. Modifications.
-
-    The Modifications that You create or to which You contribute are
-    governed by the terms of this License. You represent that You believe
-    Your Modifications are Your original creation(s) and/or You have
-    sufficient rights to grant the rights conveyed by this License.
-
-    3.3. Required Notices.
-
-    You must include a notice in each of Your Modifications that identifies
-    You as the Contributor of the Modification. You may not remove or alter
-    any copyright, patent or trademark notices contained within the Covered
-    Software, or any notices of licensing or any descriptive text giving
-    attribution to any Contributor or the Initial Developer.
-
-    3.4. Application of Additional Terms.
-
-    You may not offer or impose any terms on any Covered Software in Source
-    Code form that alters or restricts the applicable version of this
-    License or the recipients' rights hereunder. You may choose to offer,
-    and to charge a fee for, warranty, support, indemnity or liability
-    obligations to one or more recipients of Covered Software. However, you
-    may do so only on Your own behalf, and not on behalf of the Initial
-    Developer or any Contributor. You must make it absolutely clear that any
-    such warranty, support, indemnity or liability obligation is offered by
-    You alone, and You hereby agree to indemnify the Initial Developer and
-    every Contributor for any liability incurred by the Initial Developer or
-    such Contributor as a result of warranty, support, indemnity or
-    liability terms You offer.
-
-    3.5. Distribution of Executable Versions.
-
-    You may distribute the Executable form of the Covered Software under the
-    terms of this License or under the terms of a license of Your choice,
-    which may contain terms different from this License, provided that You
-    are in compliance with the terms of this License and that the license
-    for the Executable form does not attempt to limit or alter the
-    recipient's rights in the Source Code form from the rights set forth in
-    this License. If You distribute the Covered Software in Executable form
-    under a different license, You must make it absolutely clear that any
-    terms which differ from this License are offered by You alone, not by
-    the Initial Developer or Contributor. You hereby agree to indemnify the
-    Initial Developer and every Contributor for any liability incurred by
-    the Initial Developer or such Contributor as a result of any such terms
-    You offer.
-
-    3.6. Larger Works.
-
-    You may create a Larger Work by combining Covered Software with other
-    code not governed by the terms of this License and distribute the Larger
-    Work as a single product. In such a case, You must make sure the
-    requirements of this License are fulfilled for the Covered Software.
-
-4. Versions of the License.
-
-    4.1. New Versions.
-
-    Oracle is the initial license steward and may publish revised and/or new
-    versions of this License from time to time. Each version will be given a
-    distinguishing version number. Except as provided in Section 4.3, no one
-    other than the license steward has the right to modify this License.
-
-    4.2. Effect of New Versions.
-
-    You may always continue to use, distribute or otherwise make the Covered
-    Software available under the terms of the version of the License under
-    which You originally received the Covered Software. If the Initial
-    Developer includes a notice in the Original Software prohibiting it from
-    being distributed or otherwise made available under any subsequent
-    version of the License, You must distribute and make the Covered
-    Software available under the terms of the version of the License under
-    which You originally received the Covered Software. Otherwise, You may
-    also choose to use, distribute or otherwise make the Covered Software
-    available under the terms of any subsequent version of the License
-    published by the license steward.
-
-    4.3. Modified Versions.
-
-    When You are an Initial Developer and You want to create a new license
-    for Your Original Software, You may create and use a modified version of
-    this License if You: (a) rename the license and remove any references to
-    the name of the license steward (except to note that the license differs
-    from this License); and (b) otherwise make it clear that the license
-    contains terms which differ from this License.
-
-5. DISCLAIMER OF WARRANTY.
-
-    COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
-    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
-    WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF
-    DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
-    THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
-    SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY
-    RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME
-    THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS
-    DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO
-    USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
-    DISCLAIMER.
-
-6. TERMINATION.
-
-    6.1. This License and the rights granted hereunder will terminate
-    automatically if You fail to comply with terms herein and fail to cure
-    such breach within 30 days of becoming aware of the breach. Provisions
-    which, by their nature, must remain in effect beyond the termination of
-    this License shall survive.
-
-    6.2. If You assert a patent infringement claim (excluding declaratory
-    judgment actions) against Initial Developer or a Contributor (the
-    Initial Developer or Contributor against whom You assert such claim is
-    referred to as "Participant") alleging that the Participant Software
-    (meaning the Contributor Version where the Participant is a Contributor
-    or the Original Software where the Participant is the Initial Developer)
-    directly or indirectly infringes any patent, then any and all rights
-    granted directly or indirectly to You by such Participant, the Initial
-    Developer (if the Initial Developer is not the Participant) and all
-    Contributors under Sections 2.1 and/or 2.2 of this License shall, upon
-    60 days notice from Participant terminate prospectively and
-    automatically at the expiration of such 60 day notice period, unless if
-    within such 60 day period You withdraw Your claim with respect to the
-    Participant Software against such Participant either unilaterally or
-    pursuant to a written agreement with Participant.
-
-    6.3. If You assert a patent infringement claim against Participant
-    alleging that the Participant Software directly or indirectly infringes
-    any patent where such claim is resolved (such as by license or
-    settlement) prior to the initiation of patent infringement litigation,
-    then the reasonable value of the licenses granted by such Participant
-    under Sections 2.1 or 2.2 shall be taken into account in determining the
-    amount or value of any payment or license.
-
-    6.4. In the event of termination under Sections 6.1 or 6.2 above, all
-    end user licenses that have been validly granted by You or any
-    distributor hereunder prior to termination (excluding licenses granted
-    to You by any distributor) shall survive termination.
-
-7. LIMITATION OF LIABILITY.
-
-    UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
-    (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
-    DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED
-    SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY
-    PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
-    OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF
-    GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL
-    OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
-    INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
-    LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
-    RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
-    PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
-    OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION
-    AND LIMITATION MAY NOT APPLY TO YOU.
-
-8. U.S. GOVERNMENT END USERS.
-
-    The Covered Software is a "commercial item," as that term is defined in
-    48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
-    software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1))
-    and "commercial computer software documentation" as such terms are used
-    in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and
-    48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government
-    End Users acquire Covered Software with only those rights set forth
-    herein. This U.S. Government Rights clause is in lieu of, and
-    supersedes, any other FAR, DFAR, or other clause or provision that
-    addresses Government rights in computer software under this License.
-
-9. MISCELLANEOUS.
-
-    This License represents the complete agreement concerning subject matter
-    hereof. If any provision of this License is held to be unenforceable,
-    such provision shall be reformed only to the extent necessary to make it
-    enforceable. This License shall be governed by the law of the
-    jurisdiction specified in a notice contained within the Original
-    Software (except to the extent applicable law, if any, provides
-    otherwise), excluding such jurisdiction's conflict-of-law provisions.
-    Any litigation relating to this License shall be subject to the
-    jurisdiction of the courts located in the jurisdiction and venue
-    specified in a notice contained within the Original Software, with the
-    losing party responsible for costs, including, without limitation, court
-    costs and reasonable attorneys' fees and expenses. The application of
-    the United Nations Convention on Contracts for the International Sale of
-    Goods is expressly excluded. Any law or regulation which provides that
-    the language of a contract shall be construed against the drafter shall
-    not apply to this License. You agree that You alone are responsible for
-    compliance with the United States export administration regulations (and
-    the export control laws and regulation of any other countries) when You
-    use, distribute or otherwise make available any Covered Software.
-
-10. RESPONSIBILITY FOR CLAIMS.
-
-    As between Initial Developer and the Contributors, each party is
-    responsible for claims and damages arising, directly or indirectly, out
-    of its utilization of rights under this License and You agree to work
-    with Initial Developer and Contributors to distribute such
-    responsibility on an equitable basis. Nothing herein is intended or
-    shall be deemed to constitute any admission of liability.
-
-NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION
-LICENSE (CDDL)
-
-The code released under the CDDL shall be governed by the laws of the
-State of California (excluding conflict-of-law provisions). Any
-litigation relating to this License shall be subject to the jurisdiction
-of the Federal Courts of the Northern District of California and the
-state courts of the State of California, with venue lying in Santa Clara
-County, California.
-
diff --git a/java/websvc.jaxws21api/nbproject/org-netbeans-modules-websvc-jaxws21api.sig b/java/websvc.jaxws21api/nbproject/org-netbeans-modules-websvc-jaxws21api.sig
index 2f395e7..08fe610 100644
--- a/java/websvc.jaxws21api/nbproject/org-netbeans-modules-websvc-jaxws21api.sig
+++ b/java/websvc.jaxws21api/nbproject/org-netbeans-modules-websvc-jaxws21api.sig
@@ -1,5 +1,5 @@
 #Signature file v4.1
-#Version 1.46
+#Version 1.48
 
 CLSS public abstract interface java.io.Serializable
 
@@ -98,6 +98,13 @@ CLSS public abstract interface !annotation java.lang.annotation.Inherited
  anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
 intf java.lang.annotation.Annotation
 
+CLSS public abstract interface !annotation java.lang.annotation.Repeatable
+ anno 0 java.lang.annotation.Documented()
+ anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
+ anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
+intf java.lang.annotation.Annotation
+meth public abstract java.lang.Class<? extends java.lang.annotation.Annotation> value()
+
 CLSS public abstract interface !annotation java.lang.annotation.Retention
  anno 0 java.lang.annotation.Documented()
  anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
@@ -175,94 +182,6 @@ meth public abstract boolean isDone()
 meth public abstract {java.util.concurrent.Future%0} get() throws java.lang.InterruptedException,java.util.concurrent.ExecutionException
 meth public abstract {java.util.concurrent.Future%0} get(long,java.util.concurrent.TimeUnit) throws java.lang.InterruptedException,java.util.concurrent.ExecutionException,java.util.concurrent.TimeoutException
 
-CLSS public abstract interface !annotation javax.annotation.Generated
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=SOURCE)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[PACKAGE, TYPE, ANNOTATION_TYPE, METHOD, CONSTRUCTOR, FIELD, LOCAL_VARIABLE, PARAMETER])
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String comments()
-meth public abstract !hasdefault java.lang.String date()
-meth public abstract java.lang.String[] value()
-
-CLSS public abstract interface !annotation javax.annotation.ManagedBean
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault java.lang.String value()
-
-CLSS public abstract interface !annotation javax.annotation.PostConstruct
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[METHOD])
-intf java.lang.annotation.Annotation
-
-CLSS public abstract interface !annotation javax.annotation.PreDestroy
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[METHOD])
-intf java.lang.annotation.Annotation
-
-CLSS public abstract interface !annotation javax.annotation.Resource
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, FIELD, METHOD])
-innr public final static !enum AuthenticationType
-intf java.lang.annotation.Annotation
-meth public abstract !hasdefault boolean shareable()
-meth public abstract !hasdefault java.lang.Class type()
-meth public abstract !hasdefault java.lang.String description()
-meth public abstract !hasdefault java.lang.String lookup()
-meth public abstract !hasdefault java.lang.String mappedName()
-meth public abstract !hasdefault java.lang.String name()
-meth public abstract !hasdefault javax.annotation.Resource$AuthenticationType authenticationType()
-
-CLSS public final static !enum javax.annotation.Resource$AuthenticationType
- outer javax.annotation.Resource
-fld public final static javax.annotation.Resource$AuthenticationType APPLICATION
-fld public final static javax.annotation.Resource$AuthenticationType CONTAINER
-meth public static javax.annotation.Resource$AuthenticationType valueOf(java.lang.String)
-meth public static javax.annotation.Resource$AuthenticationType[] values()
-supr java.lang.Enum<javax.annotation.Resource$AuthenticationType>
-
-CLSS public abstract interface !annotation javax.annotation.Resources
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract javax.annotation.Resource[] value()
-
-CLSS public abstract interface !annotation javax.annotation.security.DeclareRoles
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.String[] value()
-
-CLSS public abstract interface !annotation javax.annotation.security.DenyAll
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD])
-intf java.lang.annotation.Annotation
-
-CLSS public abstract interface !annotation javax.annotation.security.PermitAll
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD])
-intf java.lang.annotation.Annotation
-
-CLSS public abstract interface !annotation javax.annotation.security.RolesAllowed
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.String[] value()
-
-CLSS public abstract interface !annotation javax.annotation.security.RunAs
- anno 0 java.lang.annotation.Documented()
- anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
- anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE])
-intf java.lang.annotation.Annotation
-meth public abstract java.lang.String value()
-
 CLSS public abstract interface !annotation javax.jws.HandlerChain
  anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
  anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
@@ -300,8 +219,8 @@ CLSS public final static !enum javax.jws.WebParam$Mode
 fld public final static javax.jws.WebParam$Mode IN
 fld public final static javax.jws.WebParam$Mode INOUT
 fld public final static javax.jws.WebParam$Mode OUT
-meth public final static javax.jws.WebParam$Mode[] values()
 meth public static javax.jws.WebParam$Mode valueOf(java.lang.String)
+meth public static javax.jws.WebParam$Mode[] values()
 supr java.lang.Enum<javax.jws.WebParam$Mode>
 
 CLSS public abstract interface !annotation javax.jws.WebResult
@@ -345,24 +264,24 @@ CLSS public final static !enum javax.jws.soap.SOAPBinding$ParameterStyle
  outer javax.jws.soap.SOAPBinding
 fld public final static javax.jws.soap.SOAPBinding$ParameterStyle BARE
 fld public final static javax.jws.soap.SOAPBinding$ParameterStyle WRAPPED
-meth public final static javax.jws.soap.SOAPBinding$ParameterStyle[] values()
 meth public static javax.jws.soap.SOAPBinding$ParameterStyle valueOf(java.lang.String)
+meth public static javax.jws.soap.SOAPBinding$ParameterStyle[] values()
 supr java.lang.Enum<javax.jws.soap.SOAPBinding$ParameterStyle>
 
 CLSS public final static !enum javax.jws.soap.SOAPBinding$Style
  outer javax.jws.soap.SOAPBinding
 fld public final static javax.jws.soap.SOAPBinding$Style DOCUMENT
 fld public final static javax.jws.soap.SOAPBinding$Style RPC
-meth public final static javax.jws.soap.SOAPBinding$Style[] values()
 meth public static javax.jws.soap.SOAPBinding$Style valueOf(java.lang.String)
+meth public static javax.jws.soap.SOAPBinding$Style[] values()
 supr java.lang.Enum<javax.jws.soap.SOAPBinding$Style>
 
 CLSS public final static !enum javax.jws.soap.SOAPBinding$Use
  outer javax.jws.soap.SOAPBinding
 fld public final static javax.jws.soap.SOAPBinding$Use ENCODED
 fld public final static javax.jws.soap.SOAPBinding$Use LITERAL
-meth public final static javax.jws.soap.SOAPBinding$Use[] values()
 meth public static javax.jws.soap.SOAPBinding$Use valueOf(java.lang.String)
+meth public static javax.jws.soap.SOAPBinding$Use[] values()
 supr java.lang.Enum<javax.jws.soap.SOAPBinding$Use>
 
 CLSS public abstract interface !annotation javax.jws.soap.SOAPMessageHandler
@@ -423,9 +342,9 @@ meth public abstract java.io.InputStream getBase64Content() throws javax.xml.soa
 meth public abstract java.io.InputStream getRawContent() throws javax.xml.soap.SOAPException
 meth public abstract java.lang.Object getContent() throws javax.xml.soap.SOAPException
 meth public abstract java.lang.String[] getMimeHeader(java.lang.String)
-meth public abstract java.util.Iterator getAllMimeHeaders()
-meth public abstract java.util.Iterator getMatchingMimeHeaders(java.lang.String[])
-meth public abstract java.util.Iterator getNonMatchingMimeHeaders(java.lang.String[])
+meth public abstract java.util.Iterator<javax.xml.soap.MimeHeader> getAllMimeHeaders()
+meth public abstract java.util.Iterator<javax.xml.soap.MimeHeader> getMatchingMimeHeaders(java.lang.String[])
+meth public abstract java.util.Iterator<javax.xml.soap.MimeHeader> getNonMatchingMimeHeaders(java.lang.String[])
 meth public abstract javax.activation.DataHandler getDataHandler() throws javax.xml.soap.SOAPException
 meth public abstract void addMimeHeader(java.lang.String,java.lang.String)
 meth public abstract void clearContent()
@@ -447,7 +366,7 @@ supr java.lang.Object
 
 CLSS public abstract interface javax.xml.soap.Detail
 intf javax.xml.soap.SOAPFaultElement
-meth public abstract java.util.Iterator getDetailEntries()
+meth public abstract java.util.Iterator<javax.xml.soap.DetailEntry> getDetailEntries()
 meth public abstract javax.xml.soap.DetailEntry addDetailEntry(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.soap.DetailEntry addDetailEntry(javax.xml.soap.Name) throws javax.xml.soap.SOAPException
 
@@ -461,7 +380,7 @@ meth public abstract javax.xml.soap.SOAPMessage createMessage(javax.xml.soap.Mim
 meth public static javax.xml.soap.MessageFactory newInstance() throws javax.xml.soap.SOAPException
 meth public static javax.xml.soap.MessageFactory newInstance(java.lang.String) throws javax.xml.soap.SOAPException
 supr java.lang.Object
-hfds DEFAULT_MESSAGE_FACTORY,MESSAGE_FACTORY_PROPERTY
+hfds DEFAULT_MESSAGE_FACTORY
 
 CLSS public javax.xml.soap.MimeHeader
 cons public init(java.lang.String,java.lang.String)
@@ -473,9 +392,9 @@ hfds name,value
 CLSS public javax.xml.soap.MimeHeaders
 cons public init()
 meth public java.lang.String[] getHeader(java.lang.String)
-meth public java.util.Iterator getAllHeaders()
-meth public java.util.Iterator getMatchingHeaders(java.lang.String[])
-meth public java.util.Iterator getNonMatchingHeaders(java.lang.String[])
+meth public java.util.Iterator<javax.xml.soap.MimeHeader> getAllHeaders()
+meth public java.util.Iterator<javax.xml.soap.MimeHeader> getMatchingHeaders(java.lang.String[])
+meth public java.util.Iterator<javax.xml.soap.MimeHeader> getNonMatchingHeaders(java.lang.String[])
 meth public void addHeader(java.lang.String,java.lang.String)
 meth public void removeAllHeaders()
 meth public void removeHeader(java.lang.String)
@@ -504,7 +423,7 @@ cons protected init()
 meth protected abstract javax.xml.soap.MessageFactory newMessageFactory(java.lang.String) throws javax.xml.soap.SOAPException
 meth protected abstract javax.xml.soap.SOAPFactory newSOAPFactory(java.lang.String) throws javax.xml.soap.SOAPException
 supr java.lang.Object
-hfds DEFAULT_META_FACTORY_CLASS,META_FACTORY_CLASS_PROPERTY
+hfds DEFAULT_META_FACTORY_CLASS,META_FACTORY_DEPRECATED_CLASS_PROPERTY
 
 CLSS public javax.xml.soap.SAAJResult
 cons public init() throws javax.xml.soap.SOAPException
@@ -543,7 +462,7 @@ cons public init()
 meth public abstract javax.xml.soap.SOAPConnection createConnection() throws javax.xml.soap.SOAPException
 meth public static javax.xml.soap.SOAPConnectionFactory newInstance() throws javax.xml.soap.SOAPException
 supr java.lang.Object
-hfds DEFAULT_SOAP_CONNECTION_FACTORY,SF_PROPERTY
+hfds DEFAULT_SOAP_CONNECTION_FACTORY
 
 CLSS public abstract interface javax.xml.soap.SOAPConstants
 fld public final static java.lang.String DEFAULT_SOAP_PROTOCOL = "SOAP 1.1 Protocol"
@@ -578,13 +497,13 @@ meth public abstract java.lang.String getAttributeValue(javax.xml.namespace.QNam
 meth public abstract java.lang.String getAttributeValue(javax.xml.soap.Name)
 meth public abstract java.lang.String getEncodingStyle()
 meth public abstract java.lang.String getNamespaceURI(java.lang.String)
-meth public abstract java.util.Iterator getAllAttributes()
-meth public abstract java.util.Iterator getAllAttributesAsQNames()
-meth public abstract java.util.Iterator getChildElements()
-meth public abstract java.util.Iterator getChildElements(javax.xml.namespace.QName)
-meth public abstract java.util.Iterator getChildElements(javax.xml.soap.Name)
-meth public abstract java.util.Iterator getNamespacePrefixes()
-meth public abstract java.util.Iterator getVisibleNamespacePrefixes()
+meth public abstract java.util.Iterator<java.lang.String> getNamespacePrefixes()
+meth public abstract java.util.Iterator<java.lang.String> getVisibleNamespacePrefixes()
+meth public abstract java.util.Iterator<javax.xml.namespace.QName> getAllAttributesAsQNames()
+meth public abstract java.util.Iterator<javax.xml.soap.Name> getAllAttributes()
+meth public abstract java.util.Iterator<javax.xml.soap.Node> getChildElements()
+meth public abstract java.util.Iterator<javax.xml.soap.Node> getChildElements(javax.xml.namespace.QName)
+meth public abstract java.util.Iterator<javax.xml.soap.Node> getChildElements(javax.xml.soap.Name)
 meth public abstract javax.xml.namespace.QName createQName(java.lang.String,java.lang.String) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.namespace.QName getElementQName()
 meth public abstract javax.xml.soap.Name getElementName()
@@ -645,7 +564,7 @@ meth public javax.xml.soap.SOAPElement createElement(org.w3c.dom.Element) throws
 meth public static javax.xml.soap.SOAPFactory newInstance() throws javax.xml.soap.SOAPException
 meth public static javax.xml.soap.SOAPFactory newInstance(java.lang.String) throws javax.xml.soap.SOAPException
 supr java.lang.Object
-hfds SOAP_FACTORY_PROPERTY
+hfds DEFAULT_SOAP_FACTORY
 
 CLSS public abstract interface javax.xml.soap.SOAPFault
 intf javax.xml.soap.SOAPBodyElement
@@ -656,9 +575,9 @@ meth public abstract java.lang.String getFaultNode()
 meth public abstract java.lang.String getFaultReasonText(java.util.Locale) throws javax.xml.soap.SOAPException
 meth public abstract java.lang.String getFaultRole()
 meth public abstract java.lang.String getFaultString()
-meth public abstract java.util.Iterator getFaultReasonLocales() throws javax.xml.soap.SOAPException
-meth public abstract java.util.Iterator getFaultReasonTexts() throws javax.xml.soap.SOAPException
-meth public abstract java.util.Iterator getFaultSubcodes()
+meth public abstract java.util.Iterator<java.lang.String> getFaultReasonTexts() throws javax.xml.soap.SOAPException
+meth public abstract java.util.Iterator<java.util.Locale> getFaultReasonLocales() throws javax.xml.soap.SOAPException
+meth public abstract java.util.Iterator<javax.xml.namespace.QName> getFaultSubcodes()
 meth public abstract java.util.Locale getFaultStringLocale()
 meth public abstract javax.xml.namespace.QName getFaultCodeAsQName()
 meth public abstract javax.xml.soap.Detail addDetail() throws javax.xml.soap.SOAPException
@@ -681,17 +600,17 @@ intf javax.xml.soap.SOAPElement
 
 CLSS public abstract interface javax.xml.soap.SOAPHeader
 intf javax.xml.soap.SOAPElement
-meth public abstract java.util.Iterator examineAllHeaderElements()
-meth public abstract java.util.Iterator examineHeaderElements(java.lang.String)
-meth public abstract java.util.Iterator examineMustUnderstandHeaderElements(java.lang.String)
-meth public abstract java.util.Iterator extractAllHeaderElements()
-meth public abstract java.util.Iterator extractHeaderElements(java.lang.String)
+meth public abstract java.util.Iterator<javax.xml.soap.SOAPHeaderElement> examineAllHeaderElements()
+meth public abstract java.util.Iterator<javax.xml.soap.SOAPHeaderElement> examineHeaderElements(java.lang.String)
+meth public abstract java.util.Iterator<javax.xml.soap.SOAPHeaderElement> examineMustUnderstandHeaderElements(java.lang.String)
+meth public abstract java.util.Iterator<javax.xml.soap.SOAPHeaderElement> extractAllHeaderElements()
+meth public abstract java.util.Iterator<javax.xml.soap.SOAPHeaderElement> extractHeaderElements(java.lang.String)
 meth public abstract javax.xml.soap.SOAPHeaderElement addHeaderElement(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.soap.SOAPHeaderElement addHeaderElement(javax.xml.soap.Name) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.soap.SOAPHeaderElement addNotUnderstoodHeaderElement(javax.xml.namespace.QName) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.soap.SOAPHeaderElement addUpgradeHeaderElement(java.lang.String) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.soap.SOAPHeaderElement addUpgradeHeaderElement(java.lang.String[]) throws javax.xml.soap.SOAPException
-meth public abstract javax.xml.soap.SOAPHeaderElement addUpgradeHeaderElement(java.util.Iterator) throws javax.xml.soap.SOAPException
+meth public abstract javax.xml.soap.SOAPHeaderElement addUpgradeHeaderElement(java.util.Iterator<java.lang.String>) throws javax.xml.soap.SOAPException
 
 CLSS public abstract interface javax.xml.soap.SOAPHeaderElement
 intf javax.xml.soap.SOAPElement
@@ -711,8 +630,8 @@ fld public final static java.lang.String WRITE_XML_DECLARATION = "javax.xml.soap
 meth public abstract boolean saveRequired()
 meth public abstract int countAttachments()
 meth public abstract java.lang.String getContentDescription()
-meth public abstract java.util.Iterator getAttachments()
-meth public abstract java.util.Iterator getAttachments(javax.xml.soap.MimeHeaders)
+meth public abstract java.util.Iterator<javax.xml.soap.AttachmentPart> getAttachments()
+meth public abstract java.util.Iterator<javax.xml.soap.AttachmentPart> getAttachments(javax.xml.soap.MimeHeaders)
 meth public abstract javax.xml.soap.AttachmentPart createAttachmentPart()
 meth public abstract javax.xml.soap.AttachmentPart getAttachment(javax.xml.soap.SOAPElement) throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.soap.MimeHeaders getMimeHeaders()
@@ -736,9 +655,9 @@ cons public init()
 intf javax.xml.soap.Node
 intf org.w3c.dom.Document
 meth public abstract java.lang.String[] getMimeHeader(java.lang.String)
-meth public abstract java.util.Iterator getAllMimeHeaders()
-meth public abstract java.util.Iterator getMatchingMimeHeaders(java.lang.String[])
-meth public abstract java.util.Iterator getNonMatchingMimeHeaders(java.lang.String[])
+meth public abstract java.util.Iterator<javax.xml.soap.MimeHeader> getAllMimeHeaders()
+meth public abstract java.util.Iterator<javax.xml.soap.MimeHeader> getMatchingMimeHeaders(java.lang.String[])
+meth public abstract java.util.Iterator<javax.xml.soap.MimeHeader> getNonMatchingMimeHeaders(java.lang.String[])
 meth public abstract javax.xml.soap.SOAPEnvelope getEnvelope() throws javax.xml.soap.SOAPException
 meth public abstract javax.xml.transform.Source getContent() throws javax.xml.soap.SOAPException
 meth public abstract void addMimeHeader(java.lang.String,java.lang.String)
@@ -1046,6 +965,7 @@ meth public abstract !hasdefault java.lang.String wsdlLocation()
 
 CLSS public abstract interface !annotation javax.xml.ws.WebServiceRef
  anno 0 java.lang.annotation.Documented()
+ anno 0 java.lang.annotation.Repeatable(java.lang.Class<? extends java.lang.annotation.Annotation> value=class javax.xml.ws.WebServiceRefs)
  anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
  anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD, FIELD])
 intf java.lang.annotation.Annotation
@@ -1216,7 +1136,6 @@ supr java.lang.Object
 
 CLSS public abstract javax.xml.ws.spi.Provider
 cons protected init()
-fld public final static java.lang.String JAXWSPROVIDER_PROPERTY = "javax.xml.ws.spi.Provider"
 meth public !varargs javax.xml.ws.Endpoint createAndPublishEndpoint(java.lang.String,java.lang.Object,javax.xml.ws.WebServiceFeature[])
 meth public !varargs javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Class<?>,javax.xml.ws.spi.Invoker,javax.xml.ws.WebServiceFeature[])
 meth public !varargs javax.xml.ws.Endpoint createEndpoint(java.lang.String,java.lang.Object,javax.xml.ws.WebServiceFeature[])
@@ -1230,7 +1149,7 @@ meth public abstract javax.xml.ws.wsaddressing.W3CEndpointReference createW3CEnd
 meth public javax.xml.ws.wsaddressing.W3CEndpointReference createW3CEndpointReference(java.lang.String,javax.xml.namespace.QName,javax.xml.namespace.QName,javax.xml.namespace.QName,java.util.List<org.w3c.dom.Element>,java.lang.String,java.util.List<org.w3c.dom.Element>,java.util.List<org.w3c.dom.Element>,java.util.Map<javax.xml.namespace.QName,java.lang.String>)
 meth public static javax.xml.ws.spi.Provider provider()
 supr java.lang.Object
-hfds DEFAULT_JAXWSPROVIDER,iteratorMethod,loadMethod
+hfds DEFAULT_JAXWSPROVIDER
 
 CLSS public abstract javax.xml.ws.spi.ServiceDelegate
 cons protected init()
@@ -1263,6 +1182,49 @@ intf java.lang.annotation.Annotation
 meth public abstract java.lang.Class<? extends javax.xml.ws.WebServiceFeature> bean()
 meth public abstract java.lang.String id()
 
+CLSS public abstract javax.xml.ws.spi.http.HttpContext
+cons public init()
+fld protected javax.xml.ws.spi.http.HttpHandler handler
+meth public abstract java.lang.Object getAttribute(java.lang.String)
+meth public abstract java.lang.String getPath()
+meth public abstract java.util.Set<java.lang.String> getAttributeNames()
+meth public void setHandler(javax.xml.ws.spi.http.HttpHandler)
+supr java.lang.Object
+
+CLSS public abstract javax.xml.ws.spi.http.HttpExchange
+cons public init()
+fld public final static java.lang.String REQUEST_CIPHER_SUITE = "javax.xml.ws.spi.http.request.cipher.suite"
+fld public final static java.lang.String REQUEST_KEY_SIZE = "javax.xml.ws.spi.http.request.key.size"
+fld public final static java.lang.String REQUEST_X509CERTIFICATE = "javax.xml.ws.spi.http.request.cert.X509Certificate"
+meth public abstract boolean isUserInRole(java.lang.String)
+meth public abstract java.io.InputStream getRequestBody() throws java.io.IOException
+meth public abstract java.io.OutputStream getResponseBody() throws java.io.IOException
+meth public abstract java.lang.Object getAttribute(java.lang.String)
+meth public abstract java.lang.String getContextPath()
+meth public abstract java.lang.String getPathInfo()
+meth public abstract java.lang.String getProtocol()
+meth public abstract java.lang.String getQueryString()
+meth public abstract java.lang.String getRequestHeader(java.lang.String)
+meth public abstract java.lang.String getRequestMethod()
+meth public abstract java.lang.String getRequestURI()
+meth public abstract java.lang.String getScheme()
+meth public abstract java.net.InetSocketAddress getLocalAddress()
+meth public abstract java.net.InetSocketAddress getRemoteAddress()
+meth public abstract java.security.Principal getUserPrincipal()
+meth public abstract java.util.Map<java.lang.String,java.util.List<java.lang.String>> getRequestHeaders()
+meth public abstract java.util.Map<java.lang.String,java.util.List<java.lang.String>> getResponseHeaders()
+meth public abstract java.util.Set<java.lang.String> getAttributeNames()
+meth public abstract javax.xml.ws.spi.http.HttpContext getHttpContext()
+meth public abstract void addResponseHeader(java.lang.String,java.lang.String)
+meth public abstract void close() throws java.io.IOException
+meth public abstract void setStatus(int)
+supr java.lang.Object
+
+CLSS public abstract javax.xml.ws.spi.http.HttpHandler
+cons public init()
+meth public abstract void handle(javax.xml.ws.spi.http.HttpExchange) throws java.io.IOException
+supr java.lang.Object
+
 CLSS public final javax.xml.ws.wsaddressing.W3CEndpointReference
 cons protected init()
 cons public init(javax.xml.transform.Source)
diff --git a/java/websvc.jaxws21api/nbproject/project.properties b/java/websvc.jaxws21api/nbproject/project.properties
index aabbfec..ddb93ef 100644
--- a/java/websvc.jaxws21api/nbproject/project.properties
+++ b/java/websvc.jaxws21api/nbproject/project.properties
@@ -20,14 +20,12 @@ is.autoload=true
 javac.compilerargs=-Xlint -Xlint:-serial
 javac.source=1.8
 jnlp.indirect.jars=\
-    modules/ext/jaxws22/api/jaxws-api.jar,\
-    modules/ext/jaxws22/api/jsr181-api.jar,\
-    modules/ext/jaxws22/api/javax.annotation.jar,\
-    modules/ext/jaxws22/api/saaj-api.jar
+    modules/ext/jaxws22/api/jakarta.jws-api.jar,\
+    modules/ext/jaxws22/api/jakarta.xml.soap-api.jar,\
+    modules/ext/jaxws22/api/jakarta.xml.ws-api.jar
 
-release.external/jaxws-2.2.6-api.zip!/jaxws-api.jar=modules/ext/jaxws22/api/jaxws-api.jar
-release.external/jaxws-2.2.6-api.zip!/jsr181-api.jar=modules/ext/jaxws22/api/jsr181-api.jar
-release.external/jaxws-2.2.6-api.zip!/javax.annotation.jar=modules/ext/jaxws22/api/javax.annotation.jar
-release.external/jaxws-2.2.6-api.zip!/saaj-api.jar=modules/ext/jaxws22/api/saaj-api.jar
+release.external/jakarta.jws-api-2.1.0.jar=modules/ext/jaxws22/api/jakarta.jws-api.jar
+release.external/jakarta.xml.soap-api-1.4.2.jar=modules/ext/jaxws22/api/jakarta.xml.soap-api.jar
+release.external/jakarta.xml.ws-api-2.3.3.jar=modules/ext/jaxws22/api/jakarta.xml.ws-api.jar
 
 javadoc.arch=${basedir}/arch.xml
diff --git a/java/websvc.jaxws21api/nbproject/project.xml b/java/websvc.jaxws21api/nbproject/project.xml
index 3c7b9a0..668244c 100644
--- a/java/websvc.jaxws21api/nbproject/project.xml
+++ b/java/websvc.jaxws21api/nbproject/project.xml
@@ -34,8 +34,6 @@
                 </dependency>
             </module-dependencies>
             <public-packages>
-                <package>javax.annotation</package>
-                <package>javax.annotation.security</package>
                 <package>javax.jws</package>
                 <package>javax.jws.soap</package>
                 <package>javax.xml.soap</package>
@@ -45,19 +43,17 @@
                 <package>javax.xml.ws.http</package>
                 <package>javax.xml.ws.soap</package>
                 <package>javax.xml.ws.spi</package>
+                <package>javax.xml.ws.spi.http</package>
                 <package>javax.xml.ws.wsaddressing</package>
             </public-packages>
             <class-path-extension>
-                <runtime-relative-path>ext/jaxws22/api/jaxws-api.jar</runtime-relative-path>
+                <runtime-relative-path>ext/jaxws22/api/jakarta.jws-api.jar</runtime-relative-path>
             </class-path-extension>
             <class-path-extension>
-                <runtime-relative-path>ext/jaxws22/api/jsr181-api.jar</runtime-relative-path>
+                <runtime-relative-path>ext/jaxws22/api/jakarta.xml.soap-api.jar</runtime-relative-path>
             </class-path-extension>
             <class-path-extension>
-                <runtime-relative-path>ext/jaxws22/api/javax.annotation.jar</runtime-relative-path>
-            </class-path-extension>
-            <class-path-extension>
-                <runtime-relative-path>ext/jaxws22/api/saaj-api.jar</runtime-relative-path>
+                <runtime-relative-path>ext/jaxws22/api/jakarta.xml.ws-api.jar</runtime-relative-path>
             </class-path-extension>
         </data>
     </configuration>
diff --git a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/ignored-binary-overlaps b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/ignored-binary-overlaps
index e2276cc..14dee35 100644
--- a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/ignored-binary-overlaps
+++ b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/ignored-binary-overlaps
@@ -51,9 +51,5 @@ javacard/JCDK3.0.2_ConnectedEdition/lib/commons-httpclient-3.0.jar mobility/modu
 enterprise/modules/ext/aws-sdk/commons-logging-1.1.1.jar ide/modules/ext/commons-logging-1.1.1.jar
 enterprise/modules/ext/aws-sdk/commons-codec-1.3.jar javacard/JCDK3.0.2_ConnectedEdition/lib/commons-codec-1.3.jar
 
-# Java EE 7 endorsed API library defined to be used by user contains those jars
-enterprise/modules/ext/javaee7-endorsed/jaxws-api.jar java/modules/ext/jaxws22/api/jaxws-api.jar
-enterprise/modules/ext/javaee7-endorsed/jsr181-api.jar java/modules/ext/jaxws22/api/jsr181-api.jar
-
 # maven needs commons-lang internally
 ide/modules/org-apache-commons-lang.jar java/maven/lib/commons-lang-2.6.jar
\ No newline at end of file
diff --git a/java/websvc.jaxws21/external/jaxws-2.2.6-bsd-woodstox-license.txt b/nbbuild/licenses/BSD-stax2-api
similarity index 68%
rename from java/websvc.jaxws21/external/jaxws-2.2.6-bsd-woodstox-license.txt
rename to nbbuild/licenses/BSD-stax2-api
index 9286145..7630c74 100644
--- a/java/websvc.jaxws21/external/jaxws-2.2.6-bsd-woodstox-license.txt
+++ b/nbbuild/licenses/BSD-stax2-api
@@ -1,30 +1,19 @@
-Name: JAX-WS
-Description: JAX-WS Reference Implementation
-Version: 2.2.6
-Origin: Oracle
-URL: http://jax-ws.java.net/
-License: BSD-woodstox
-Files: stax2-api-3.1.1.jar
-
-Copyright (c) 2004-2010, Woodstox Project (http://woodstox.codehaus.org/)
-All rights reserved.
+Copyright 2010-2022 FasterXML.com
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 
 1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
+
 2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
-3. Neither the name of the Woodstox XML Processor nor the names
-   of its contributors may be used to endorse or promote products derived
-   from this software without specific prior written permission.
 
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
diff --git a/websvccommon/websvc.saas.api/nbproject/project.properties b/websvccommon/websvc.saas.api/nbproject/project.properties
index c4ffa23..309ccd9 100644
--- a/websvccommon/websvc.saas.api/nbproject/project.properties
+++ b/websvccommon/websvc.saas.api/nbproject/project.properties
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 javac.compilerargs=-Xlint -Xlint:-serial
-javac.source=1.6
-test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws21/api
+javac.source=1.8
+test-unit-sys-prop.java.endorsed.dirs=${websvc.jaxws21.dir}/modules/ext/jaxws22/api
 test.unit.cp.extra=${ant.core.lib}
 sigtest.skip.check=true
diff --git a/websvccommon/websvc.saas.api/test/unit/src/org/netbeans/modules/websvc/saas/util/SetupUtil.java b/websvccommon/websvc.saas.api/test/unit/src/org/netbeans/modules/websvc/saas/util/SetupUtil.java
index 659039f..fc9853d 100644
--- a/websvccommon/websvc.saas.api/test/unit/src/org/netbeans/modules/websvc/saas/util/SetupUtil.java
+++ b/websvccommon/websvc.saas.api/test/unit/src/org/netbeans/modules/websvc/saas/util/SetupUtil.java
@@ -51,7 +51,7 @@ import org.openide.util.NbCollections;
  */
 public class SetupUtil {
     
-    private static final String ENDORSED_REF = "modules/ext/jaxws22/api/jaxws-api.jar";
+    private static final String ENDORSED_REF = "modules/ext/jaxws22/api/jakarta.xml.ws-api.jar";
     private static final String JAXWS_LIB_PROPERTY = "libs.jaxws21.classpath";
     
     public static void commonSetUp(File workingDir) throws Exception {

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists