SPR-4359 the 'scheduling' namespace is now 'concurrent'

This commit is contained in:
Mark Fisher 2009-05-21 18:41:13 +00:00
parent e70d2ce14c
commit 1b302b70d0
4 changed files with 8 additions and 8 deletions

View File

@ -19,12 +19,12 @@ package org.springframework.scheduling.config;
import org.springframework.beans.factory.xml.NamespaceHandlerSupport; import org.springframework.beans.factory.xml.NamespaceHandlerSupport;
/** /**
* <code>NamespaceHandler</code> for the scheduling namespace. * <code>NamespaceHandler</code> for the 'concurrent' namespace.
* *
* @author Mark Fisher * @author Mark Fisher
* @since 3.0 * @since 3.0
*/ */
public class SchedulingNamespaceHandler extends NamespaceHandlerSupport { public class ConcurrentNamespaceHandler extends NamespaceHandlerSupport {
public void init() { public void init() {
this.registerBeanDefinitionParser("scheduled-tasks", new ScheduledTasksBeanDefinitionParser()); this.registerBeanDefinitionParser("scheduled-tasks", new ScheduledTasksBeanDefinitionParser());

View File

@ -1,4 +1,4 @@
http\://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler http\://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler
http\://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler http\://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler
http\://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler http\://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler
http\://www.springframework.org/schema/scheduling=org.springframework.scheduling.config.SchedulingNamespaceHandler http\://www.springframework.org/schema/concurrent=org.springframework.scheduling.config.ConcurrentNamespaceHandler

View File

@ -6,5 +6,5 @@ http\://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ej
http\://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd http\://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd
http\://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd http\://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd
http\://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd http\://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd
http\://www.springframework.org/schema/scheduling/spring-scheduling-3.0.xsd=org/springframework/scheduling/config/spring-scheduling-3.0.xsd http\://www.springframework.org/schema/concurrent/spring-concurrent-3.0.xsd=org/springframework/scheduling/config/spring-concurrent-3.0.xsd
http\://www.springframework.org/schema/scheduling/spring-scheduling.xsd=org/springframework/scheduling/config/spring-scheduling-3.0.xsd http\://www.springframework.org/schema/concurrent/spring-concurrent.xsd=org/springframework/scheduling/config/spring-concurrent-3.0.xsd

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema xmlns="http://www.springframework.org/schema/scheduling" <xsd:schema xmlns="http://www.springframework.org/schema/concurrent"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:beans="http://www.springframework.org/schema/beans" xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:tool="http://www.springframework.org/schema/tool" xmlns:tool="http://www.springframework.org/schema/tool"
targetNamespace="http://www.springframework.org/schema/scheduling" targetNamespace="http://www.springframework.org/schema/concurrent"
elementFormDefault="qualified" elementFormDefault="qualified"
attributeFormDefault="unqualified"> attributeFormDefault="unqualified">
<xsd:annotation> <xsd:annotation>
<xsd:documentation><![CDATA[ <xsd:documentation><![CDATA[
Defines the elements used in the Spring Framework's scheduling support. Defines the elements used in the Spring Framework's support for task execution and scheduling.
]]></xsd:documentation> ]]></xsd:documentation>
</xsd:annotation> </xsd:annotation>