?? job_scheduling_data_1_5.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. This attribute is deprecated.</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>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -