jbossws-jaxws-config_4_0.xsd 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ JBoss, Home of Professional Open Source.
  4. ~ Copyright 2011, Red Hat, Inc., and individual contributors
  5. ~ as indicated by the @author tags. See the copyright.txt file in the
  6. ~ distribution for a full listing of individual contributors.
  7. ~
  8. ~ This is free software; you can redistribute it and/or modify it
  9. ~ under the terms of the GNU Lesser General Public License as
  10. ~ published by the Free Software Foundation; either version 2.1 of
  11. ~ the License, or (at your option) any later version.
  12. ~
  13. ~ This software is distributed in the hope that it will be useful,
  14. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. ~ Lesser General Public License for more details.
  17. ~
  18. ~ You should have received a copy of the GNU Lesser General Public
  19. ~ License along with this software; if not, write to the Free
  20. ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  22. -->
  23. <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema"
  24. targetNamespace="urn:jboss:jbossws-jaxws-config:4.0"
  25. xmlns:tns="urn:jboss:jbossws-jaxws-config:4.0"
  26. xmlns:javaee="http://java.sun.com/xml/ns/javaee"
  27. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  28. elementFormDefault="qualified"
  29. attributeFormDefault="unqualified"
  30. version="1.1">
  31. <xsd:annotation>
  32. <xsd:documentation>
  33. <![CDATA[
  34. This is the schema definition for JBossWS JAXWS configurations.
  35. It relies on the handler definitions that are part of the standard JavaEE 6 deployment descriptors.
  36. ]]>
  37. </xsd:documentation>
  38. </xsd:annotation>
  39. <xsd:import namespace="http://java.sun.com/xml/ns/javaee" schemaLocation="http://java.sun.com/xml/ns/javaee/javaee_6.xsd"/>
  40. <xsd:element name="jaxws-config" type="tns:jaxwsConfigType"/>
  41. <xsd:complexType name="jaxwsConfigType">
  42. <xsd:sequence>
  43. <xsd:element name="endpoint-config" type="tns:endpointConfigType" minOccurs="0" maxOccurs="unbounded"/>
  44. <xsd:element name="client-config" type="tns:clientConfigType" minOccurs="0" maxOccurs="unbounded"/>
  45. </xsd:sequence>
  46. </xsd:complexType>
  47. <xsd:complexType name="endpointConfigType">
  48. <xsd:complexContent>
  49. <xsd:extension base="tns:commonConfigType"/>
  50. </xsd:complexContent>
  51. </xsd:complexType>
  52. <xsd:complexType name="clientConfigType">
  53. <xsd:complexContent>
  54. <xsd:extension base="tns:commonConfigType"/>
  55. </xsd:complexContent>
  56. </xsd:complexType>
  57. <xsd:complexType name="commonConfigType">
  58. <xsd:sequence>
  59. <xsd:element name="config-name" type="xsd:string"/>
  60. <xsd:element name="pre-handler-chains" type="javaee:handler-chainsType" minOccurs="0"/>
  61. <xsd:element name="post-handler-chains" type="javaee:handler-chainsType" minOccurs="0"/>
  62. <xsd:element name="feature" type="tns:featureType" minOccurs="0" maxOccurs="unbounded"/>
  63. <xsd:element name="property" type="tns:propertyType" minOccurs="0" maxOccurs="unbounded"/>
  64. </xsd:sequence>
  65. </xsd:complexType>
  66. <xsd:complexType name="featureType">
  67. <xsd:sequence>
  68. <xsd:element name="feature-name" type="xsd:string"/>
  69. </xsd:sequence>
  70. </xsd:complexType>
  71. <xsd:complexType name="propertyType">
  72. <xsd:sequence>
  73. <xsd:element name="property-name" type="xsd:string"/>
  74. <xsd:element name="property-value" type="xsd:string"/>
  75. </xsd:sequence>
  76. </xsd:complexType>
  77. </xsd:schema>