BATCH-1213: Added check in CoreNamespacePostProcessor to ensure that the parent of a <step/> does not have to be an AbstractStep

This commit is contained in:
dhgarrette
2009-05-20 23:47:49 +00:00
parent 9bdfdcbc43
commit 2c56a1b0c2
4 changed files with 132 additions and 12 deletions

View File

@@ -0,0 +1,50 @@
/*
* Copyright 2006-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.configuration.xml;
import org.springframework.batch.core.JobInterruptedException;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.beans.factory.BeanNameAware;
/**
* @author Dan Garrette
* @since 2.0.1
*/
public class DummyStep implements Step, BeanNameAware {
private String name;
public String getName() {
return name;
}
public void setBeanName(String name) {
this.name = name;
}
public void execute(StepExecution stepExecution) throws JobInterruptedException {
System.out.println("EXECUTING " + getName());
}
public int getStartLimit() {
return 100;
}
public boolean isAllowStartIfComplete() {
return false;
}
}

View File

@@ -308,4 +308,14 @@ public class StepParserTests {
}
return property;
}
@Test
public void testNonAbstractStep() {
ApplicationContext ctx = new ClassPathXmlApplicationContext(
"org/springframework/batch/core/configuration/xml/StepParserParentAttributeTests-context.xml");
assertTrue(ctx.containsBean("s11"));
Object bean = ctx.getBean("s11");
assertTrue(bean instanceof DummyStep);
}
}