亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? jpdl-3.0.xsd

?? workflow first jbpm
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="fork">
		<xs:annotation>
			<xs:documentation>Defines a point in the processing path where multiple execution paths will run in parallel.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="script" minOccurs="0"/>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="event" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="join">
		<xs:annotation>
			<xs:documentation>Defines a point in the processing path where multiple execution paths merge into one path.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="event" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="node">
		<xs:annotation>
			<xs:documentation>A generic node allowing custom behavior.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:choice minOccurs="0" maxOccurs="1">
					<xs:annotation>
						<xs:documentation>A custom action that represents the behaviour for this node</xs:documentation>
					</xs:annotation>
					<xs:element ref="action"/>
					<xs:element ref="script"/>
					<xs:element ref="create-timer"/>
					<xs:element ref="cancel-timer"/>
				</xs:choice>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="event" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="process-state">
		<xs:annotation>
			<xs:documentation>A node that allows execution of another subordinate process.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element name="sub-process">
					<xs:complexType>
						<xs:attribute name="name" type="xs:string" use="required">
							<xs:annotation>
								<xs:documentation>The name of the subordinate process definition to be executed within the enclosing process.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="version" type="xs:integer" use="optional">
							<xs:annotation>
								<xs:documentation>The version of the deployed process-definition that is to be executed.  If none is specified the latest version of the identified process will be used.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element ref="variable" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Supported event types: node-enter, node-leave, before-signal, after-signal, subprocess-created, subprocess-end.</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:choice minOccurs="0" maxOccurs="unbounded">
							<xs:element ref="action"/>
							<xs:element ref="script"/>
							<xs:element ref="create-timer"/>
							<xs:element ref="cancel-timer"/>
						</xs:choice>
						<xs:attribute name="type" use="required">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="node-enter"/>
									<xs:enumeration value="node-leave"/>
									<xs:enumeration value="before-signal"/>
									<xs:enumeration value="after-signal"/>
									<xs:enumeration value="subprocess-created"/>
									<xs:enumeration value="subprocess-end"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="script">
		<xs:annotation>
			<xs:documentation>A beanshell script to execute.  The script can be the content of this tag or you can specify one or more variables and a beanshell script in the expression tag.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence minOccurs="0">
				<xs:element ref="variable" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="expression">
					<xs:annotation>
						<xs:documentation>The beanshell script.</xs:documentation>
					</xs:annotation>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>The name of the script action.  When actions are given names, they can be looked up from the process definition.  This can be useful for runtime actions and declaring actions only once.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="accept-propagated-events" type="booleanType" use="optional" default="true">
				<xs:annotation>
					<xs:documentation>If set to false the action will only be executed on events that were fired in this action's element.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="state">
		<xs:annotation>
			<xs:documentation>Represents a wait state in a process.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:choice minOccurs="0">
					<xs:annotation>
						<xs:documentation>A custom action that represents the behaviour for this node</xs:documentation>
					</xs:annotation>
					<xs:element ref="action"/>
					<xs:element ref="script"/>
					<xs:element ref="create-timer"/>
					<xs:element ref="cancel-timer"/>
				</xs:choice>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="event" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="super-state">
		<xs:annotation>
			<xs:documentation>Grouping mechanism for a named set of nodes.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:choice minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>The nodes of the process definition.  Note that a process without nodes is valid, but cannot be executed.</xs:documentation>
					</xs:annotation>
					<xs:element ref="state"/>
					<xs:element ref="task-node"/>
					<xs:element ref="super-state"/>
					<xs:element ref="process-state"/>
					<xs:element ref="node"/>
					<xs:element ref="fork"/>
					<xs:element ref="join"/>
					<xs:element ref="decision"/>
					<xs:element ref="end-state"/>
				</xs:choice>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Supports all event types except the process-start and end events.</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:choice minOccurs="0" maxOccurs="unbounded">
							<xs:element ref="action"/>
							<xs:element ref="script"/>
							<xs:element ref="create-timer"/>
							<xs:element ref="cancel-timer"/>
						</xs:choice>
						<xs:attribute name="type" use="required">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="node-enter"/>
									<xs:enumeration value="node-leave"/>
									<xs:enumeration value="before-signal"/>
									<xs:enumeration value="after-signal"/>
									<xs:enumeration value="superstate-enter"/>
									<xs:enumeration value="superstate-leave"/>
									<xs:enumeration value="task-create"/>
									<xs:enumeration value="task-assign"/>
									<xs:enumeration value="task-start"/>
									<xs:enumeration value="task-end"/>
									<xs:enumeration value="transition"/>
									<xs:enumeration value="timer"/>
									<xs:enumeration value="subprocess-created"/>
									<xs:enumeration value="subprocess-end"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="swimlane">
		<xs:annotation>
			<xs:documentation>Groups tasks assigned to the same resource.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="assignment" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="task">
		<xs:annotation>
			<xs:documentation>The tasks that should be created when execution arrives in this task node.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="assignment" minOccurs="0"/>
				<xs:element name="controller" minOccurs="0">
					<xs:annotation>
						<xs:documentation>Controller supports the inclusion of one or more "variable" tags as children.  It also supports custom XML for use with a custom controller class as indicated by config-type.</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:sequence>
							<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
								<xs:annotation>
									<xs:documentation>This section can include "variable" elements to identify input and output variables involved in this task.</xs:documentation>
								</xs:annotation>
							</xs:any>
						</xs:sequence>
						<xs:attribute name="class" type="xs:string" use="optional"/>
						<xs:attribute name="config-type" type="configType" use="optional">
							<xs:annotation>
								<xs:documentation>Specifies how the assignment handler object should be constructed and how the content of this element should be used as configuration information for that object.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Supports events:  task-create, task-assign, task-start, task-end.</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:choice minOccurs="0" maxOccurs="unbounded">
							<xs:element ref="action"/>
							<xs:element ref="script"/>
							<xs:element ref="create-timer"/>
							<xs:element ref="cancel-timer"/>
						</xs:choice>
						<xs:attribute name="type" use="required">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="task-create"/>
									<xs:enumeration value="task-start"/>
									<xs:enumeration value="task-assign"/>
									<xs:enumeration value="task-end"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element name="timer" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Specifies a timer that monitors the duration of an execution in this task.</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:choice>
							<xs:element ref="action"/>
							<xs:element ref="script"/>
						</xs:choice>
						<xs:attribute name="name" type="xs:string" use="optional">
							<xs:annotation>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品亚洲视频| 国产精品一区专区| 91视频www| 精品国产一区久久| 日韩中文字幕区一区有砖一区 | 久久精品国产秦先生| 91香蕉视频污在线| 久久九九影视网| 日韩精品高清不卡| 色94色欧美sute亚洲线路二| 久久婷婷国产综合精品青草| 三级一区在线视频先锋| 日本道精品一区二区三区| 国产日韩影视精品| 精品一区二区三区免费播放| 欧美日韩免费一区二区三区视频 | 欧美一区日韩一区| 亚洲精品欧美在线| 成人综合婷婷国产精品久久免费| 日韩欧美国产三级电影视频| 午夜精品在线看| 91黄视频在线| 亚洲精品国久久99热| 不卡欧美aaaaa| 国产免费成人在线视频| 国产精品影视网| 久久这里只有精品6| 蜜桃久久av一区| 制服丝袜亚洲播放| 丝袜亚洲另类欧美| 欧美人妖巨大在线| 午夜精品久久久久久久| 欧美日韩一级二级| 亚洲电影一级片| 欧美午夜电影一区| 亚洲高清免费视频| 欧美日韩成人在线| 日韩av中文在线观看| 7777精品伊人久久久大香线蕉| 亚洲免费伊人电影| 色婷婷精品久久二区二区蜜臂av| 中文字幕一区二区三区视频| aaa欧美色吧激情视频| 亚洲天堂免费在线观看视频| 91视频.com| 亚洲综合在线电影| 欧美色图12p| 日韩激情视频网站| 日韩一区二区电影网| 麻豆精品视频在线观看视频| 精品久久久三级丝袜| 国产精品主播直播| 国产精品美女久久久久久2018| av在线播放一区二区三区| 国产精品不卡一区| 91国内精品野花午夜精品| 亚洲大尺度视频在线观看| 欧美疯狂做受xxxx富婆| 久久99久久99精品免视看婷婷| 精品国产一区二区亚洲人成毛片| 国产精品香蕉一区二区三区| 国产精品国产精品国产专区不蜜| 91小视频免费观看| 日韩在线一二三区| 久久亚洲欧美国产精品乐播| 成a人片亚洲日本久久| 一区二区三区欧美| 91麻豆精品国产91久久久使用方法 | 国产精品色哟哟| 91玉足脚交白嫩脚丫在线播放| 一区二区三区小说| 91精品婷婷国产综合久久性色| 久久精品二区亚洲w码| 亚洲国产精品ⅴa在线观看| 色偷偷一区二区三区| 蜜臀久久久久久久| 日本一区二区三区国色天香| 欧美亚洲国产一区二区三区va| 免费观看日韩av| 国产精品天美传媒| 欧美日韩国产一级二级| 国产一区二区三区国产| 成人欧美一区二区三区白人| 欧美二区三区的天堂| 国产盗摄精品一区二区三区在线| 亚洲美女区一区| 日韩午夜在线影院| 成人a区在线观看| 日韩国产成人精品| 一色屋精品亚洲香蕉网站| 91精品欧美一区二区三区综合在| 成人丝袜18视频在线观看| 偷拍自拍另类欧美| 欧美国产日韩精品免费观看| 精品污污网站免费看| 高清视频一区二区| 日韩国产精品久久| 日韩理论片在线| 欧美大片顶级少妇| 日本道免费精品一区二区三区| 国产综合色精品一区二区三区| 亚洲激情图片qvod| 国产色产综合色产在线视频| 欧美日韩国产另类一区| 成人爽a毛片一区二区免费| 日韩精品成人一区二区在线| 亚洲视频免费在线观看| 久久亚洲二区三区| 欧美人妇做爰xxxⅹ性高电影| 成人免费观看视频| 日韩va欧美va亚洲va久久| 亚洲精品久久久蜜桃| 国产欧美视频一区二区三区| 91精品欧美一区二区三区综合在 | 精品视频在线看| 图片区小说区区亚洲影院| 久久精品网站免费观看| 99久久综合色| 国内精品免费**视频| 亚洲自拍偷拍图区| 久久久av毛片精品| 精品视频色一区| 色综合久久88色综合天天免费| 男人的天堂久久精品| 自拍偷拍亚洲激情| 精品久久久久久久久久久久久久久久久 | 国产精品动漫网站| 日韩欧美亚洲国产精品字幕久久久| jizz一区二区| 亚洲国产色一区| 亚洲同性同志一二三专区| 欧美成人一区二区| 日本伦理一区二区| 成人一二三区视频| 久久精品国产亚洲高清剧情介绍| 一级中文字幕一区二区| 欧美国产日本视频| 精品99999| 4438x亚洲最大成人网| 91美女在线视频| 国产一区二区三区| 亚洲制服丝袜在线| 国产精品国产三级国产aⅴ中文| 日韩欧美国产精品| 欧美日韩一区成人| 色美美综合视频| av高清不卡在线| 国产成人免费视频网站| 国产精品123区| 韩国三级中文字幕hd久久精品| 日本不卡视频在线观看| 亚洲成人免费视| 午夜精品久久久久影视| 亚洲愉拍自拍另类高清精品| 亚洲男同性视频| 亚洲欧美日本韩国| 亚洲精品久久久久久国产精华液| 国产精品成人免费精品自在线观看| 国产午夜精品一区二区三区四区| 日韩精品一区二区三区视频| 欧美午夜一区二区三区免费大片| 色狠狠av一区二区三区| 99re成人在线| 不卡欧美aaaaa| 99久久伊人网影院| www.色综合.com| 成人国产亚洲欧美成人综合网| 国产成人午夜片在线观看高清观看| 久久成人免费网站| 狠狠久久亚洲欧美| 成人黄色片在线观看| eeuss鲁片一区二区三区| 国产99久久久国产精品| 成人免费av资源| 91黄色免费网站| 欧美视频日韩视频| 91精品国产综合久久久蜜臀粉嫩 | 男人的j进女人的j一区| 美女视频黄a大片欧美| 精品一区二区免费看| 国产综合久久久久久鬼色| 国产九色精品成人porny| 国产一区二区三区高清播放| 国产91综合一区在线观看| 国产精品18久久久久久久久久久久| 国产一区二区福利视频| 国产成人三级在线观看| 成人午夜激情在线| 色综合久久久久久久| 日韩一区二区免费视频| 久久嫩草精品久久久久| 欧美极品aⅴ影院| 亚洲视频小说图片| 奇米一区二区三区| 国产乱人伦偷精品视频免下载| 国产·精品毛片| 色婷婷香蕉在线一区二区| 日韩欧美三级在线| 国产午夜精品一区二区三区视频 | 欧美色图免费看|