From: <jbo...@li...> - 2006-07-05 07:08:25
|
Author: hei...@jb... Date: 2006-07-05 03:08:13 -0400 (Wed, 05 Jul 2006) New Revision: 558 Modified: branches/jbossws-1.0/src/main/java/javax/jws/WebMethod.java branches/jbossws-1.0/src/main/java/javax/jws/WebService.java branches/jbossws-1.0/src/main/java/org/jboss/ws/handler/HandlerWrapper.java branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/NCName.java branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLDefinitions.java branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLImport.java branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLInterfaceOperationInfault.java Log: removed illegal characters Modified: branches/jbossws-1.0/src/main/java/javax/jws/WebMethod.java =================================================================== --- branches/jbossws-1.0/src/main/java/javax/jws/WebMethod.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/javax/jws/WebMethod.java 2006-07-05 07:08:13 UTC (rev 558) @@ -29,7 +29,7 @@ import java.lang.annotation.Target; /** - * Specifies that the given method is exposed as a Web Service operation, making it part of the Web Services public + * Specifies that the given method is exposed as a Web Service operation, making it part of the Web Service public * contract. A WebMethod annotation is required for each method that is published by the Web Service. The associated * method must be public and its parameters return value, and exceptions must follow the rules defined in JAX-RPC 1.1, * section 5. The method is not required to throw java.rmi.RemoteException. Modified: branches/jbossws-1.0/src/main/java/javax/jws/WebService.java =================================================================== --- branches/jbossws-1.0/src/main/java/javax/jws/WebService.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/javax/jws/WebService.java 2006-07-05 07:08:13 UTC (rev 558) @@ -52,7 +52,7 @@ /** * The service name of the Web Service. Used as the name of the wsdl:service when mapped to WSDL 1.1. - * Not allowed on interfaces. Defaults to the simple name of the Java class + Service". + * Not allowed on interfaces. Defaults to the simple name of the Java class + Service. */ String serviceName() default ""; @@ -67,7 +67,7 @@ String wsdlLocation() default ""; /** - * The complete name of the service endpoint interface defining the services abstract Web Service contract. This + * The complete name of the service endpoint interface defining the service abstract Web Service contract. This * annotation allows the developer to separate the interface contract from the implementation. If this annotation * is present, the service endpoint interface is used to determine the abstract WSDL contract (portType and * bindings). The service endpoint interface may include JSR-181 annotations to customize the mapping from Java to Modified: branches/jbossws-1.0/src/main/java/org/jboss/ws/handler/HandlerWrapper.java =================================================================== --- branches/jbossws-1.0/src/main/java/org/jboss/ws/handler/HandlerWrapper.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/org/jboss/ws/handler/HandlerWrapper.java 2006-07-05 07:08:13 UTC (rev 558) @@ -170,7 +170,7 @@ /** * As defined by JAX-RPC, a RuntimeException(other than SOAPFaultException) thrown from any method of - * the Handler results in the destroymethod being invoked and transition to the Does Not Exist state. + * the Handler results in the destroymethod being invoked and transition to the 'Does Not Exist' state. */ private boolean handleRuntimeException(RuntimeException e) { Modified: branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/NCName.java =================================================================== --- branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/NCName.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/NCName.java 2006-07-05 07:08:13 UTC (rev 558) @@ -30,7 +30,7 @@ /** * The value space of the wsdls:NCName type is the subset of the value space of the wsdls:Token type - * consisting of tokens that do not contain the space (#x20) and : characters. + * consisting of tokens that do not contain the space (#x20) and ':' characters. * * @author Tho...@jb... * @since 10-Oct-2004 Modified: branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLDefinitions.java =================================================================== --- branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLDefinitions.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLDefinitions.java 2006-07-05 07:08:13 UTC (rev 558) @@ -45,7 +45,7 @@ * The top level Definitions component is just a container for two categories of components; * WSDL components and type system components. WSDL components are interfaces, bindings and services. * - * Type system components describe the constraints on a messages content. + * Type system components describe the constraints on a message content. * * @author Tho...@jb... * @since 10-Oct-2004 Modified: branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLImport.java =================================================================== --- branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLImport.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLImport.java 2006-07-05 07:08:13 UTC (rev 558) @@ -48,7 +48,7 @@ * NOT match the actual value of the enclosing WSDL document targetNamespace attribute * information item. If the import statement results in the import of a WSDL document then the actual value * of the namespace attribute information item MUST be identical to the actual value of the imported - * WSDL documents targetNamespace attribute information item. */ + * WSDL document's targetNamespace attribute information item. */ private String namespace; /** The OPTIONAL location attribute information item is of type xs:anyURI . Its actual value is the location of Modified: branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLInterfaceOperationInfault.java =================================================================== --- branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLInterfaceOperationInfault.java 2006-07-04 19:04:41 UTC (rev 557) +++ branches/jbossws-1.0/src/main/java/org/jboss/ws/metadata/wsdl/WSDLInterfaceOperationInfault.java 2006-07-05 07:08:13 UTC (rev 558) @@ -40,7 +40,7 @@ private WSDLInterfaceOperation wsdlInterfaceOperation; /** A REQUIRED reference to an Interface Fault component in the {faults} property of the parent - * Interface Operation components parent Interface component. Identifying the Interface Fault + * Interface Operation component's parent Interface component. Identifying the Interface Fault * component therefore indirectly defines the actual content or payload of the fault message. */ private QName ref; |