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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? job_scheduling_data_1_5.xsd

?? Quartz 是個開源的作業調度框架
?? XSD
字號:
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:quartz="http://www.opensymphony.com/quartz/JobSchedulingData" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.opensymphony.com/quartz/JobSchedulingData" elementFormDefault="qualified" version="1.5">	<annotation>		<documentation>            Copyright (c) 2004-2005 by OpenSymphony      All rights reserved.       Previously Copyright (c) 2001-2004 James House	        And Previously Copyright Third Eye Consulting, Inc. (c) 2004          </documentation>	</annotation>	<annotation>		<documentation><![CDATA[        This is the XML Schema for Job Scheduling Data.        All xml files containing job scheduling data must indicate the        Quartz schema by using the Quartz namespace:                http://www.opensymphony.com/quartz/JobSchedulingData          and indicate the version of the schema by        using the version element as shown below:            <quartz xmlns="http://www.opensymphony.com/quartz/JobSchedulingData"                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                    xsi:schemaLocation="http://www.quartzscheduler.org/ns/quartz                      http://www.opensymphony.com/quartz/xml/job_scheduling_data_1_5.xsd"                    version="1.5">              ...            </quartz>        The instance documents may indicate the published version of        the schema using the xsi:schemaLocation attribute for the Quartz        namespace with the following location:        http://www.opensymphony.com/quartz/xml/job_scheduling_data_1_5.xsd      ]]></documentation>	</annotation>	<element name="quartz">		<annotation>			<documentation>Root level node</documentation>		</annotation>		<complexType>			<sequence>				<element name="job-listener" type="quartz:job-listenerType" minOccurs="0" maxOccurs="unbounded"/>				<element name="calendar" type="quartz:calendarType" minOccurs="0" maxOccurs="unbounded"/>				<element name="job" type="quartz:jobType" minOccurs="0" maxOccurs="unbounded"/>			</sequence>			<attribute name="version" type="xsd:string">				<annotation>					<documentation>Version of the XML Schema instance</documentation>				</annotation>			</attribute>			<attribute name="overwrite-existing-jobs" type="xsd:boolean" default="true">				<annotation>					<documentation>Whether the existing jobs will be overwritten.</documentation>				</annotation>			</attribute>		</complexType>	</element>	<complexType name="job-listenerType">		<annotation>			<documentation>Define a Job Listener</documentation>		</annotation>		<attribute name="class-name" type="xsd:string" use="required">			<annotation>				<documentation>Job Listener class name</documentation>			</annotation>		</attribute>		<attribute name="name" type="xsd:string" default="required">			<annotation>				<documentation>logical name for listener</documentation>			</annotation>		</attribute>	</complexType>	<complexType name="calendarType">		<annotation>			<documentation>Define a Calendar</documentation>		</annotation>		<sequence>			<element name="name" type="xsd:string"/>			<element name="description" type="xsd:string" minOccurs="0"/>			<element name="base-calendar" type="quartz:calendarType" minOccurs="0"/>		</sequence>		<attribute name="class-name" type="xsd:string" use="required">			<annotation>				<documentation>Calendar class name</documentation>			</annotation>		</attribute>		<attribute name="replace" type="xsd:boolean" default="false">			<annotation>				<documentation>Flag to replace existing calendar</documentation>			</annotation>		</attribute>	</complexType>	<complexType name="jobType">		<annotation>			<documentation>Define a Job</documentation>		</annotation>		<sequence>			<element name="job-detail" type="quartz:job-detailType"/>			<element name="trigger" type="quartz:triggerType" minOccurs="0" maxOccurs="unbounded"/>		</sequence>	</complexType>	<complexType name="job-detailType">		<annotation>			<documentation>Define a JobDetail</documentation>		</annotation>		<sequence>			<element ref="quartz:name"/>			<element ref="quartz:group"/>			<element name="description" type="xsd:string" minOccurs="0"/>			<element ref="quartz:job-class"/>			<element ref="quartz:job-listener-ref" minOccurs="0"/>			<sequence minOccurs="0">				<element ref="quartz:volatility"/>				<element ref="quartz:durability"/>				<element ref="quartz:recover"/>			</sequence>			<element name="job-data-map" type="quartz:job-data-mapType" minOccurs="0"/>		</sequence>	</complexType>	<element name="name" type="xsd:string">		<annotation>			<documentation>Name of the JobDetail or Trigger</documentation>		</annotation>	</element>	<element name="group" type="xsd:string">		<annotation>			<documentation>Group in which the JobDetail or Trigger resides</documentation>		</annotation>	</element>	<element name="job-class" type="xsd:string">		<annotation>			<documentation>Fully qualified name of the Job class</documentation>		</annotation>	</element>	<element name="job-listener-ref" type="xsd:string">		<annotation>			<documentation>logical name of the Job Listener</documentation>		</annotation>	</element>	<element name="volatility" type="xsd:boolean" default="false">		<annotation>			<documentation>Whether the Job is volatile</documentation>		</annotation>	</element>	<element name="durability" type="xsd:boolean" default="false">		<annotation>			<documentation>Whether the Job is durable</documentation>		</annotation>	</element>	<element name="recover" type="xsd:boolean" default="false">		<annotation>			<documentation>Whether the Job is recoverable</documentation>		</annotation>	</element>	<complexType name="job-data-mapType">		<annotation>			<documentation>Define a JobDataMap</documentation>		</annotation>		<sequence minOccurs="0" maxOccurs="unbounded">			<element name="entry" type="quartz:entryType"/>		</sequence>		<attribute name="allows-transient-data" type="xsd:boolean" default="false">			<annotation>				<documentation>Whether the JobDataMap allows transient data.</documentation>			</annotation>		</attribute>	</complexType>	<complexType name="entryType">		<annotation>			<documentation>Define a JobDataMap entry</documentation>		</annotation>		<sequence>			<element ref="quartz:key"/>			<element ref="quartz:value"/>		</sequence>	</complexType>	<element name="key" type="xsd:string">		<annotation>			<documentation>Define a JobDataMap key</documentation>		</annotation>	</element>	<element name="value" type="xsd:string">		<annotation>			<documentation>Define a JobDataMap value</documentation>		</annotation>	</element>	<complexType name="triggerType">		<annotation>			<documentation>Define a Trigger</documentation>		</annotation>		<choice>			<element name="simple" type="quartz:simpleType"/>			<element name="cron" type="quartz:cronType"/>		</choice>	</complexType>	<complexType name="abstractTriggerType" abstract="true">		<annotation>			<documentation>Common Trigger definitions</documentation>		</annotation>		<sequence>			<element ref="quartz:name"/>			<element ref="quartz:group"/>			<element name="description" type="xsd:string" minOccurs="0"/>			<element name="misfire-instruction" type="quartz:misfire-instructionType" minOccurs="0"/>			<element ref="quartz:calendar-name" minOccurs="0"/>
			<element ref="quartz:volatility" minOccurs="0"/>  		</sequence>	</complexType>	<simpleType name="misfire-instructionType">		<annotation>			<documentation>Define a Trigger Misfire Instruction</documentation>		</annotation>		<restriction base="xsd:string">			<pattern value="MISFIRE_INSTRUCTION_SMART_POLICY"/>			<pattern value="MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT"/>			<pattern value="MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_REMAINING_COUNT"/>			<pattern value="MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_EXISTING_REPEAT_COUNT"/>			<pattern value="MISFIRE_INSTRUCTION_RESCHEDULE_NOW_WITH_REMAINING_REPEAT_COUNT"/>			<pattern value="MISFIRE_INSTRUCTION_DO_NOTHING"/>			<pattern value="MISFIRE_INSTRUCTION_FIRE_ONCE_NOW"/>		</restriction>	</simpleType>	<element name="calendar-name" type="xsd:string">		<annotation>			<documentation>Define a Trigger Calendar name</documentation>		</annotation>	</element>	<complexType name="simpleType">		<annotation>			<documentation>Define a SimpleTrigger</documentation>		</annotation>		<complexContent>			<extension base="quartz:abstractTriggerType">				<sequence>					<sequence minOccurs="0">						<element ref="quartz:job-name"/>						<element ref="quartz:job-group"/>					</sequence>					<sequence minOccurs="0">						<element ref="quartz:start-time"/>						<element ref="quartz:end-time" minOccurs="0"/>					</sequence>					<sequence minOccurs="0">						<element name="repeat-count" type="quartz:repeat-countType"/>						<element ref="quartz:repeat-interval"/>					</sequence>				</sequence>			</extension>		</complexContent>	</complexType>	<element name="job-name" type="xsd:string">		<annotation>			<documentation>Name of the Job</documentation>		</annotation>	</element>	<element name="job-group" type="xsd:string">		<annotation>			<documentation>Group in which the Job resides</documentation>		</annotation>	</element>
   	<element name="start-time" type="xsd:dateTime">		<annotation>			<documentation>Start time of the job</documentation>		</annotation>	</element>	<element name="end-time" type="xsd:dateTime">		<annotation>			<documentation>End time of the job</documentation>		</annotation>	</element>	<simpleType name="repeat-countType">		<annotation>			<documentation>Number of times to repeat the Trigger (-1 for indefinite)</documentation>		</annotation>		<restriction base="xsd:integer">			<minInclusive value="-1"/>		</restriction>	</simpleType>	<element name="repeat-interval" type="xsd:nonNegativeInteger">		<annotation>			<documentation>Time interval (in milliseconds) at which the Trigger should repeat</documentation>		</annotation>	</element>	<complexType name="cronType">		<annotation>			<documentation>Define a CronTrigger</documentation>		</annotation>		<complexContent>			<extension base="quartz:abstractTriggerType">				<sequence minOccurs="0">					<sequence>						<element ref="quartz:job-name"/>						<element ref="quartz:job-group"/>					</sequence>					<sequence minOccurs="0">						<sequence minOccurs="0">							<element ref="quartz:start-time"/>							<element ref="quartz:end-time"/>						</sequence>						<element name="cron-expression" type="quartz:cron-expressionType"/>						<element ref="quartz:time-zone" minOccurs="0"/>					</sequence>				</sequence>			</extension>		</complexContent>	</complexType>	<simpleType name="cron-expressionType">		<annotation>			<documentation>        Cron expression (see JavaDoc for examples)        Special thanks to Chris Thatcher (thatcher@butterfly.net) for the regular expression!                          Regular expressions are not my strong point but I believe this is complete,                  with the caveat that order for expressions like 3-0 is not legal but will pass,                   and month and day names must be capitalized.                  If you want to examine the correctness look for the [\s] to denote the                  seperation of individual regular expressions. This is how I break them up visually                   to examine them:                                  SECONDS:                (                         ((([0-9] | [0-5][0-9]),)*([0-9]|[0-5][0-9]))                    | (([0-9]|[0-5][0-9])(/|-)([0-9]|[0-5][0-9]))                    | ([\?])                    | ([\*])                ) [\s]                MINUTES:                (                         ((([0-9] | [0-5][0-9]),)*([0-9]|[0-5][0-9]))                    | (([0-9]|[0-5][0-9])(/|-)([0-9]|[0-5][0-9]))                    | ([\?])                    | ([\*])                ) [\s]                HOURS:                (                    ((([0-9]|[0-1][0-9]|[2][0-3]),)*([0-9]|[0-1][0-9]|[2][0-3]))                  | (([0-9]|[0-1][0-9]|[2][0-3])(/|-)([0-9]|[0-1][0-9]|[2][0-3]))                   | ([\?])                  | ([\*])                 ) [\s]                DAY OF MONTH:                (                    ((([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1]),)*([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1])(C)?)                  | (([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1])(/|-)([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1])(C)?)                  | (L)                  | ([\?])                  | ([\*])                )[\s]                MONTH:                (                      ((([1-9]|0[1-9]|1[0-2]),)*([1-9]|0[1-9]|1[0-2]))                  | (([1-9]|0[1-9]|1[0-2])(/|-)([1-9]|0[1-9]|1[0-2]))                  | (((JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC),)*(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC))                  | ((JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)(-|/)(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC))                  | ([\?])                  | ([\*])                )[\s]                DAY OF WEEK:                (                     (([1-7],)*([1-7]))                  | ([1-7](/|-)([1-7]))                  | (((MON|TUE|WED|THU|FRI|SAT|SUN),)*(MON|TUE|WED|THU|FRI|SAT|SUN)(C)?)                  | ((MON|TUE|WED|THU|FRI|SAT|SUN)(-|/)(MON|TUE|WED|THU|FRI|SAT|SUN)(C)?)                  | (([1-7]|(MON|TUE|WED|THU|FRI|SAT|SUN))(L)?)                  | ([1-7]#([1-7])?)                  | ([\?])                  | ([\*])                )                YEAR (OPTIONAL):                ([\s]19[7-9][0-9]|20[0-9]{2})?               </documentation>		</annotation>		<restriction base="xsd:string">			<pattern value="(((([0-9]|[0-5][0-9]),)*([0-9]|[0-5][0-9]))|(([0-9]|[0-5][0-9])(/|-)([0-9]|[0-5][0-9]))|([\?])|([\*]))[\s](((([0-9]|[0-5][0-9]),)*([0-9]|[0-5][0-9]))|(([0-9]|[0-5][0-9])(/|-)([0-9]|[0-5][0-9]))|([\?])|([\*]))[\s](((([0-9]|[0-1][0-9]|[2][0-3]),)*([0-9]|[0-1][0-9]|[2][0-3]))|(([0-9]|[0-1][0-9]|[2][0-3])(/|-)([0-9]|[0-1][0-9]|[2][0-3]))|([\?])|([\*]))[\s](((([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1]),)*([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1])(C)?)|(([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1])(/|-)([1-9]|[0][1-9]|[1-2][0-9]|[3][0-1])(C)?)|(L)|([\?])|([\*]))[\s](((([1-9]|0[1-9]|1[0-2]),)*([1-9]|0[1-9]|1[0-2]))|(([1-9]|0[1-9]|1[0-2])(/|-)([1-9]|0[1-9]|1[0-2]))|(((JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC),)*(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC))|((JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)(-|/)(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC))|([\?])|([\*]))[\s]((([1-7],)*([1-7]))|([1-7](/|-)([1-7]))|(((MON|TUE|WED|THU|FRI|SAT|SUN),)*(MON|TUE|WED|THU|FRI|SAT|SUN)(C)?)|((MON|TUE|WED|THU|FRI|SAT|SUN)(-|/)(MON|TUE|WED|THU|FRI|SAT|SUN)(C)?)|(([1-7]|(MON|TUE|WED|THU|FRI|SAT|SUN))?(L)?)|([1-7]#([1-7])?)|([\?])|([\*]))([\s]19[7-9][0-9]|20[0-9]{2})?"/>		</restriction>	</simpleType>	<element name="time-zone" type="xsd:string">		<annotation>			<documentation>Valid java.util.Timezone ID</documentation>		</annotation>	</element></schema>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美变态tickling挠脚心| 94-欧美-setu| 久久综合久久鬼色| 国产精品69久久久久水密桃| 久久亚洲一级片| 国产精品1区二区.| 亚洲人成网站在线| 欧美日韩在线免费视频| 日本va欧美va瓶| 久久久九九九九| 不卡视频一二三| 亚洲成人在线免费| 日韩欧美一级精品久久| 国产成人aaa| 一区二区三区四区蜜桃| 日韩欧美久久久| 成人黄色片在线观看| 伊人开心综合网| 日韩久久久久久| 99re8在线精品视频免费播放| 亚洲制服丝袜av| 精品国产麻豆免费人成网站| 95精品视频在线| 久久91精品久久久久久秒播| 国产精品视频免费看| 精品视频资源站| 高清久久久久久| 免费成人结看片| 亚洲欧美日本在线| 久久综合九色综合久久久精品综合| 99国产精品国产精品久久| 久久99国产精品麻豆| 日韩码欧中文字| 91精品国产91热久久久做人人| 丁香网亚洲国际| 婷婷国产v国产偷v亚洲高清| 国产日韩欧美精品电影三级在线| 欧美日韩精品一区二区三区四区| 国产成+人+日韩+欧美+亚洲| 午夜精品久久一牛影视| 亚洲欧洲av在线| 日韩欧美二区三区| 欧美日韩大陆一区二区| jvid福利写真一区二区三区| 奇米精品一区二区三区在线观看一| 亚洲视频一二三| 久久蜜臀精品av| 日韩视频免费直播| 精品视频色一区| 色噜噜狠狠一区二区三区果冻| 国产精品综合二区| 免费久久99精品国产| 亚洲aaa精品| 亚洲一级片在线观看| 亚洲视频在线一区观看| 国产区在线观看成人精品| 91精品国产综合久久精品麻豆| 在线亚洲精品福利网址导航| 成人av在线影院| 成人国产亚洲欧美成人综合网| 国产精品一二三四| 国产传媒日韩欧美成人| 久久av资源网| 久久成人久久鬼色| 久久国产福利国产秒拍| 美日韩一区二区| 看国产成人h片视频| 久久99热这里只有精品| 美女视频网站黄色亚洲| 日本亚洲天堂网| 美女一区二区视频| 蜜桃视频在线观看一区二区| 人人狠狠综合久久亚洲| 蜜桃精品视频在线观看| 久久99精品网久久| 国产精品一区二区你懂的| 国产成人综合视频| 成人免费的视频| 91啦中文在线观看| 精品婷婷伊人一区三区三| 777a∨成人精品桃花网| 日韩一区二区三区电影在线观看 | 久久先锋影音av| 精品国产乱码久久久久久老虎| 2023国产精华国产精品| 久久久www成人免费毛片麻豆| 久久久精品国产99久久精品芒果| 国产欧美一区二区三区网站| 中文字幕欧美国产| 中文字幕在线不卡| 亚洲午夜精品久久久久久久久| 亚洲高清不卡在线观看| 美女免费视频一区| 国产成人综合视频| 91麻豆成人久久精品二区三区| 欧美性生活久久| 日韩视频不卡中文| 国产精品美女久久久久久久久| 亚洲人午夜精品天堂一二香蕉| 亚洲国产视频在线| 九九精品一区二区| a级精品国产片在线观看| 91理论电影在线观看| 91精品国产欧美一区二区18| 亚洲精品在线免费观看视频| 国产精品免费观看视频| 亚洲va欧美va天堂v国产综合| 精品亚洲porn| 91天堂素人约啪| 91精品国产麻豆国产自产在线| 久久综合色鬼综合色| 亚洲伦理在线免费看| 麻豆精品视频在线观看| 91视频观看视频| 精品少妇一区二区三区视频免付费 | 国产盗摄精品一区二区三区在线| 成人夜色视频网站在线观看| 欧美性受xxxx黑人xyx| 久久久久久久精| 午夜婷婷国产麻豆精品| 国产精品综合av一区二区国产馆| 欧美在线影院一区二区| 国产亚洲欧美一级| 亚洲第一狼人社区| 成人免费av网站| 欧美电视剧免费观看| 一区二区三区精品在线| 狠狠色丁香九九婷婷综合五月| 在线中文字幕不卡| 中文一区在线播放| 男男成人高潮片免费网站| 色天使久久综合网天天| 国产清纯在线一区二区www| 日韩高清欧美激情| 色婷婷精品久久二区二区蜜臀av | 亚洲成av人影院| 99久久婷婷国产| 久久综合色播五月| 日韩avvvv在线播放| 在线精品视频一区二区| 国产精品网友自拍| 国产尤物一区二区在线| 在线91免费看| 亚洲国产视频a| 欧洲国内综合视频| 中文字幕在线视频一区| 国产一区二区三区黄视频 | 六月丁香综合在线视频| 色域天天综合网| 亚洲三级视频在线观看| 粉嫩aⅴ一区二区三区四区五区| 日韩欧美一级在线播放| 日韩电影在线一区二区| 欧美在线观看视频在线| 亚洲视频狠狠干| av在线免费不卡| 国产精品色婷婷| 不卡高清视频专区| 三级久久三级久久| 色婷婷精品久久二区二区蜜臀av| 日韩一区在线播放| 91免费在线视频观看| 国产精品久久久久久户外露出| 成人午夜短视频| 国产精品久久久久9999吃药| 成人动漫中文字幕| 亚洲欧美自拍偷拍色图| 99久久精品一区| 一区二区三区欧美日韩| 在线视频欧美区| 日日夜夜精品免费视频| 国产精品电影一区二区三区| 高清不卡在线观看av| 中文子幕无线码一区tr| av动漫一区二区| 亚洲精品老司机| 5566中文字幕一区二区电影| 美日韩一区二区三区| 久久久久久亚洲综合| 丁香六月综合激情| 中文字幕一区二区三区精华液 | 中文字幕一区二区三区四区| 91视频国产观看| 午夜av一区二区| 久久婷婷综合激情| 成人avav影音| 亚洲成人av中文| 久久蜜桃av一区二区天堂| 99视频热这里只有精品免费| 亚洲影视资源网| 精品99一区二区| 91视频一区二区| 免费精品视频最新在线| 国产精品每日更新在线播放网址| 色悠悠久久综合| 精品无人区卡一卡二卡三乱码免费卡| 国产日韩在线不卡| 欧美性一区二区| 国产精品资源在线看| 亚洲激情在线播放|