176790248.cache 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing,
  12. software distributed under the License is distributed on an
  13. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. KIND, either express or implied. See the License for the
  15. specific language governing permissions and limitations
  16. under the License.
  17. -->
  18. <xsd:schema
  19. targetNamespace="http://cxf.apache.org/configuration/beans"
  20. xmlns:tns="http://cxf.apache.org/configuration/beans"
  21. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  22. elementFormDefault="qualified"
  23. attributeFormDefault="unqualified">
  24. <xsd:attributeGroup name="beanAttributes">
  25. <xsd:attribute name="name" type="xsd:string">
  26. <xsd:annotation>
  27. <xsd:documentation>
  28. A unique identifier for the bean. This can also be a list of identifiers.
  29. See documentation for attribute name in attribute group beanAttributes
  30. in http://www.springframework.org/schema/beans/spring-beans.xsd
  31. </xsd:documentation>
  32. </xsd:annotation>
  33. </xsd:attribute>
  34. <xsd:attribute name="abstract" type="xsd:boolean">
  35. <xsd:annotation>
  36. <xsd:documentation>
  37. Specifies if the bean is an abstract bean. Abstract beans act as parents for
  38. concrete bean definitions and are not instantiated. The default is "false".
  39. Setting this to "true" instructs the bean factory not to instantiate the bean.
  40. See documentation for attribute abstract in attribute group beanAttributes
  41. in http://www.springframework.org/schema/beans/spring-beans.xsd
  42. </xsd:documentation>
  43. </xsd:annotation>
  44. </xsd:attribute>
  45. <xsd:attribute name="depends-on" type="xsd:string">
  46. <xsd:annotation>
  47. <xsd:documentation>
  48. A list of beans that the bean depends on being instantiated before it
  49. can be instantiated.
  50. See documentation for attribute depends-on in attribute group beanAttributes
  51. in http://www.springframework.org/schema/beans/spring-beans.xsd
  52. </xsd:documentation>
  53. </xsd:annotation>
  54. </xsd:attribute>
  55. <xsd:attribute name="createdFromAPI" type="xsd:boolean">
  56. <xsd:annotation>
  57. <xsd:documentation>
  58. Specifies that the user created that bean using CXF APIs like
  59. Endpoint.publish or Service.getPort.
  60. The default is "false".
  61. Setting this to "true" does the following: Changes the internal name of the
  62. bean by appending either ".jaxws-client" or ".jaxws-endpoint" to the bean's
  63. id. Makes the bean abstract.
  64. See documentation for attribute abstract in attribute group beanAttributes
  65. in http://www.springframework.org/schema/beans/spring-beans.xsd
  66. </xsd:documentation>
  67. </xsd:annotation>
  68. </xsd:attribute>
  69. </xsd:attributeGroup>
  70. <xsd:complexType name="ClassOrBeanType">
  71. <xsd:attribute name="class" type="xsd:string"/>
  72. <xsd:attribute name="bean" type="xsd:string"/>
  73. </xsd:complexType>
  74. <xsd:complexType name="identifiedType" abstract="true">
  75. <xsd:attribute name="id" type="xsd:ID"/>
  76. </xsd:complexType>
  77. </xsd:schema>