The 'task' sub-element of the 'scheduled-tasks' element is now 'scheduled' to be consistent with the @Scheduled annotation (and to avoid task:task).

This commit is contained in:
Mark Fisher
2009-06-17 19:39:51 +00:00
parent 9368e76ffc
commit b2d73b9824
3 changed files with 8 additions and 8 deletions

View File

@@ -155,7 +155,7 @@
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="task" type="taskType" minOccurs="1" maxOccurs="unbounded"/>
<xsd:element name="scheduled" type="scheduledTaskType" minOccurs="1" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="scheduler" type="xsd:string" use="optional">
<xsd:annotation>
@@ -173,10 +173,10 @@
</xsd:complexType>
</xsd:element>
<xsd:complexType name="taskType">
<xsd:complexType name="scheduledTaskType">
<xsd:annotation>
<xsd:documentation><![CDATA[
Element defining a method-invoking task and its corresponding trigger.
Element defining a scheduled method-invoking task and its corresponding trigger.
]]></xsd:documentation>
</xsd:annotation>
<xsd:attribute name="cron" type="xsd:string" use="optional">