You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ba...@apache.org on 2007/05/01 19:50:15 UTC

svn commit: r534171 - /webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/

Author: barrettj
Date: Tue May  1 10:50:14 2007
New Revision: 534171

URL: http://svn.apache.org/viewvc?view=rev&rev=534171
Log:
Fix CTS signature validation failures

Modified:
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/BindingType.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/RequestWrapper.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ResponseWrapper.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ServiceMode.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebEndpoint.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebFault.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceClient.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceProvider.java
    webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceRef.java

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/BindingType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/BindingType.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/BindingType.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/BindingType.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,6 +23,7 @@
 
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
+@Documented
 public @interface BindingType {
 
     public String value() default "";

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/RequestWrapper.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/RequestWrapper.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/RequestWrapper.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/RequestWrapper.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,6 +23,7 @@
 
 @Target(ElementType.METHOD)
 @Retention(RetentionPolicy.RUNTIME)
+@Documented
 public @interface RequestWrapper {
 
     public String localName() default "";

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ResponseWrapper.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ResponseWrapper.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ResponseWrapper.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ResponseWrapper.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,6 +23,7 @@
 
 @Target(ElementType.METHOD)
 @Retention(RetentionPolicy.RUNTIME)
+@Documented
 public @interface ResponseWrapper {
 
     public String localName() default "";

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ServiceMode.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ServiceMode.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ServiceMode.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/ServiceMode.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Inherited;
 import java.lang.annotation.Retention;
@@ -24,6 +25,7 @@
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
 @Inherited
+@Documented
 public @interface ServiceMode {
 
     public Service.Mode value() default Service.Mode.PAYLOAD;

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebEndpoint.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebEndpoint.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebEndpoint.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebEndpoint.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,6 +23,7 @@
 
 @Target(ElementType.METHOD)
 @Retention(RetentionPolicy.RUNTIME)
+@Documented
 public @interface WebEndpoint {
     public String name() default "";
 }

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebFault.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebFault.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebFault.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebFault.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,7 +23,7 @@
 
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
-
+@Documented
 public @interface WebFault {
 
     public String name() default "";

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceClient.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceClient.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceClient.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceClient.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,7 +23,7 @@
 
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
-
+@Documented
 public @interface WebServiceClient {
 
     public String name() default "";

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceProvider.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceProvider.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceProvider.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceProvider.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,7 +23,7 @@
 
 @Target(ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
-
+@Documented
 public @interface WebServiceProvider {
 
     public String wsdlLocation() default "";

Modified: webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceRef.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceRef.java?view=diff&rev=534171&r1=534170&r2=534171
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceRef.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws-api/src/javax/xml/ws/WebServiceRef.java Tue May  1 10:50:14 2007
@@ -15,6 +15,7 @@
 */
 package javax.xml.ws;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -22,7 +23,7 @@
 
 @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
 @Retention(RetentionPolicy.RUNTIME)
-
+@Documented
 public @interface WebServiceRef {
 
     public String name() default "";



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org