📄 service-group.xsd
字号:
<?xml version="1.0" encoding="UTF-8"?><!-- * Copyright (c) 2001-2004 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * Service Framework - Service Definition DTD * $Id: service-group.xsd 5462 2005-08-05 18:35:48Z jonesde $--><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:element name="service-group"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" ref="group"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="group"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" ref="service"/> </xs:sequence> <xs:attributeGroup ref="attlist.group"/> </xs:complexType> </xs:element> <xs:attributeGroup name="attlist.group"> <xs:attribute type="xs:string" name="name" use="required"/> <xs:attribute name="send-mode" default="all"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="none"/> <xs:enumeration value="all"/> <xs:enumeration value="first-available"/> <xs:enumeration value="random"/> <xs:enumeration value="round-robin"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:attributeGroup> <xs:element name="service"> <xs:complexType> <xs:attributeGroup ref="attlist.service"/> </xs:complexType> </xs:element> <xs:attributeGroup name="attlist.service"> <xs:attribute type="xs:string" name="name" use="required"/> <xs:attribute name="mode" default="sync"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="sync"/> <xs:enumeration value="async"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="result-to-context" default="false"> <xs:simpleType> <xs:restriction base="xs:token"> <xs:enumeration value="true"/> <xs:enumeration value="false"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:attributeGroup></xs:schema><!-- <service-group> <group name="testOne" send-mode="none"> <service name="testScv" mode="async"/> <service name="testScv" mode="sync"/> </group> </service-group>-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -