Author: dkulp
Date: Fri Jun 12 20:31:41 2009
New Revision: 784260
URL: http://svn.apache.org/viewvc?rev=784260&view=rev
Log:
Fix a few more things
Modified:
cxf/sandbox/geronimo-jaxws_2.2_spec/NOTICE
cxf/sandbox/geronimo-jaxws_2.2_spec/TODO
cxf/sandbox/geronimo-jaxws_2.2_spec/pom.xml
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/Endpoint.java
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/WebFault.java
Modified: cxf/sandbox/geronimo-jaxws_2.2_spec/NOTICE
URL:
http://svn.apache.org/viewvc/cxf/sandbox/geronimo-jaxws_2.2_spec/NOTICE?rev=784260&r1=784259&r2=784260&view=diff
==============================================================================
--- cxf/sandbox/geronimo-jaxws_2.2_spec/NOTICE (original)
+++ cxf/sandbox/geronimo-jaxws_2.2_spec/NOTICE Fri Jun 12 20:31:41 2009
@@ -1,4 +1,4 @@
-Apache Geronimo JAX-WS 2.1 API
+Apache Geronimo JAX-WS 2.2 API
Copyright 2003-2009 The Apache Software Foundation
This product includes software developed at
Modified: cxf/sandbox/geronimo-jaxws_2.2_spec/TODO
URL:
http://svn.apache.org/viewvc/cxf/sandbox/geronimo-jaxws_2.2_spec/TODO?rev=784260&r1=784259&r2=784260&view=diff
==============================================================================
--- cxf/sandbox/geronimo-jaxws_2.2_spec/TODO (original)
+++ cxf/sandbox/geronimo-jaxws_2.2_spec/TODO Fri Jun 12 20:31:41 2009
@@ -2,13 +2,10 @@
INFO: 7011: javax.xml.ws.Endpoint: Method 'public javax.xml.ws.Endpoint
create(java.lang.String, java.lang.Object, javax.xml.ws.WebServiceFeature[])'
has been added
INFO: 7011: javax.xml.ws.Endpoint: Method 'public javax.xml.ws.Endpoint
publish(java.lang.String, java.lang.Object, javax.xml.ws.WebServiceFeature[])'
has been added
INFO: 7011: javax.xml.ws.Endpoint: Method 'public void
publish(javax.xml.ws.spi.http.HttpContext)' has been added
-INFO: 7011: javax.xml.ws.Endpoint: Method 'public void
setEndpointContext(javax.xml.ws.EndpointContext)' has been added
-INFO: 8000: javax.xml.ws.EndpointContext: Class javax.xml.ws.EndpointContext
added
INFO: 7011: javax.xml.ws.Service: Method 'protected Service(java.net.URL,
javax.xml.namespace.QName, javax.xml.ws.WebServiceFeature[])' has been added
INFO: 7011: javax.xml.ws.Service: Method 'public javax.xml.ws.Service
create(java.net.URL, javax.xml.namespace.QName,
javax.xml.ws.WebServiceFeature[])' has been added
INFO: 7011: javax.xml.ws.Service: Method 'public javax.xml.ws.Service
create(javax.xml.namespace.QName, javax.xml.ws.WebServiceFeature[])' has been
added
ERROR: 7014: javax.xml.ws.Service$Mode: Method 'public
javax.xml.ws.Service$Mode[] values()' is now final
-ERROR: 7012: javax.xml.ws.WebFault: Method 'public java.lang.String
messageName()' has been added to an interface
ERROR: 7012: javax.xml.ws.soap.Addressing: Method 'public
javax.xml.ws.soap.AddressingFeature$Responses responses()' has been added to an
interface
INFO: 7011: javax.xml.ws.soap.AddressingFeature: Method 'public
AddressingFeature(boolean, boolean,
javax.xml.ws.soap.AddressingFeature$Responses)' has been added
INFO: 7011: javax.xml.ws.soap.AddressingFeature: Method 'public
javax.xml.ws.soap.AddressingFeature$Responses getResponses()' has been added
Modified: cxf/sandbox/geronimo-jaxws_2.2_spec/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/sandbox/geronimo-jaxws_2.2_spec/pom.xml?rev=784260&r1=784259&r2=784260&view=diff
==============================================================================
--- cxf/sandbox/geronimo-jaxws_2.2_spec/pom.xml (original)
+++ cxf/sandbox/geronimo-jaxws_2.2_spec/pom.xml Fri Jun 12 20:31:41 2009
@@ -106,7 +106,7 @@
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
-
<Export-Package>javax.xml.ws*;version=2.1</Export-Package>
+
<Export-Package>javax.xml.ws*;version=2.2</Export-Package>
</instructions>
</configuration>
</plugin>
Modified:
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/Endpoint.java
URL:
http://svn.apache.org/viewvc/cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/Endpoint.java?rev=784260&r1=784259&r2=784260&view=diff
==============================================================================
---
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/Endpoint.java
(original)
+++
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/Endpoint.java
Fri Jun 12 20:31:41 2009
@@ -69,6 +69,14 @@
public abstract <T extends EndpointReference> T
getEndpointReference(Class<T> clazz, org.w3c.dom.Element...
referenceParameters);
+
+ /**
+ * @since 2.2
+ */
+ public void setEndpointContext(javax.xml.ws.EndpointContext ctx) {
+ throw new UnsupportedOperationException("JAX-WS 2.2 implementations
must override this method.");
+ }
+
public static final String WSDL_SERVICE = "javax.xml.ws.wsdl.service";
public static final String WSDL_PORT = "javax.xml.ws.wsdl.port";
}
Modified:
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/WebFault.java
URL:
http://svn.apache.org/viewvc/cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/WebFault.java?rev=784260&r1=784259&r2=784260&view=diff
==============================================================================
---
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/WebFault.java
(original)
+++
cxf/sandbox/geronimo-jaxws_2.2_spec/src/main/java/javax/xml/ws/WebFault.java
Fri Jun 12 20:31:41 2009
@@ -35,4 +35,6 @@
public String targetNamespace() default "";
public String faultBean() default "";
+
+ public String messageName() default "";
}