esp_service_decoupledlogging.xsd 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  3. <xs:include schemaLocation="environment.xsd"/>
  4. <xs:element name="EspService">
  5. <xs:complexType>
  6. <xs:attribute name="build" type="buildType" use="required">
  7. <xs:annotation>
  8. <xs:appinfo>
  9. <viewType>hidden</viewType>
  10. <tooltip>The build name to be deployed</tooltip>
  11. </xs:appinfo>
  12. </xs:annotation>
  13. </xs:attribute>
  14. <xs:attribute name="buildSet" type="buildSetType" use="required">
  15. <xs:annotation>
  16. <xs:appinfo>
  17. <viewType>hidden</viewType>
  18. </xs:appinfo>
  19. </xs:annotation>
  20. </xs:attribute>
  21. <xs:attribute name="name" type="xs:string" use="required" default="">
  22. <xs:annotation>
  23. <xs:appinfo>
  24. <title>Transaction Log Service Name</title>
  25. <required>true</required>
  26. <tooltip>Name for this Transaction Log web service interface.</tooltip>
  27. <autogenforwizard>1</autogenforwizard>
  28. </xs:appinfo>
  29. </xs:annotation>
  30. </xs:attribute>
  31. <xs:attribute name="description" type="xs:string" use="optional" default="Transaction Log Based Web Service Interface">
  32. <xs:annotation>
  33. <xs:appinfo>
  34. <title>Transaction Log Service Description</title>
  35. <tooltip>Describes each Transaction Log web service interface</tooltip>
  36. </xs:appinfo>
  37. </xs:annotation>
  38. </xs:attribute>
  39. <xs:sequence>
  40. <xs:element name="LoggingManager" maxOccurs="unbounded">
  41. <xs:annotation>
  42. <xs:appinfo>
  43. <title>ESP Logging Managers</title>
  44. </xs:appinfo>
  45. </xs:annotation>
  46. <xs:complexType>
  47. <xs:attribute name="LoggingManager" type="loggingmanagerType" use="required">
  48. <xs:annotation>
  49. <xs:appinfo>
  50. <tooltip>Specifies the Logging Manager.</tooltip>
  51. </xs:appinfo>
  52. </xs:annotation>
  53. </xs:attribute>
  54. </xs:complexType>
  55. </xs:element>
  56. </xs:sequence>
  57. </xs:complexType>
  58. </xs:element>
  59. </xs:schema>