You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/08/03 18:22:01 UTC

svn commit: r800453 - /cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/jms-context.xsd

Author: dkulp
Date: Mon Aug  3 16:22:01 2009
New Revision: 800453

URL: http://svn.apache.org/viewvc?rev=800453&view=rev
Log:
Merge some xsd documentation in that was done on one of the branches and
was never pulled to trunk

Modified:
    cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/jms-context.xsd

Modified: cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/jms-context.xsd
URL: http://svn.apache.org/viewvc/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/jms-context.xsd?rev=800453&r1=800452&r2=800453&view=diff
==============================================================================
--- cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/jms-context.xsd (original)
+++ cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/jms-context.xsd Mon Aug  3 16:22:01 2009
@@ -30,7 +30,11 @@
         </xs:annotation>
 
         <xs:sequence>
-            <xs:element name="property" type="jms-context:JMSPropertyType" minOccurs="0" maxOccurs="unbounded" />
+            <xs:element name="property" type="jms-context:JMSPropertyType" minOccurs="0" maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>A collection of user provided JMS properties</xs:documentation>
+                </xs:annotation>
+            </xs:element>
         </xs:sequence>
         <xs:attribute name="JMSCorrelationID" type="xs:string"/>
         <xs:attribute name="JMSDeliveryMode" type="xs:int" />
@@ -45,7 +49,7 @@
 
     <xs:complexType name="JMSServerHeadersType">
         <xs:annotation>
-            <xs:documentation>JMS header properties.</xs:documentation>
+            <xs:documentation>JMS header properties for use by server-side endpoints</xs:documentation>
         </xs:annotation>
 
         <xs:complexContent>
@@ -57,7 +61,7 @@
 
     <xs:complexType name="JMSClientHeadersType">
         <xs:annotation>
-            <xs:documentation>JMS header properties.</xs:documentation>
+            <xs:documentation>JMS header properties for client-side endpoints</xs:documentation>
         </xs:annotation>
 
         <xs:complexContent>
@@ -68,6 +72,10 @@
     </xs:complexType>
 
     <xs:complexType name="JMSPropertyType">
+        <xs:annotation>
+            <xs:documentation>Name/value pair used to hold user specified JMS 
+                header properties</xs:documentation>
+        </xs:annotation>
         <xs:sequence>
             <xs:element name="name" type="xs:string"/>
             <xs:element name="value" type="xs:string"/>
@@ -76,7 +84,8 @@
 
     <xs:complexType name="JMSConnectionSecurityInfoType">
         <xs:annotation>
-            <xs:documentation>Contains username/password sometimes required when establishing a connection.</xs:documentation>
+            <xs:documentation>Contains username/password sometimes required when 
+                establishing a connection to a JMS broker.</xs:documentation>
         </xs:annotation>
 
         <xs:sequence>