diff --git a/spring-batch-core/src/main/resources/org/springframework/batch/core/configuration/xml/spring-batch-2.0.xsd b/spring-batch-core/src/main/resources/org/springframework/batch/core/configuration/xml/spring-batch-2.0.xsd index 278227ccc..af0212fba 100644 --- a/spring-batch-core/src/main/resources/org/springframework/batch/core/configuration/xml/spring-batch-2.0.xsd +++ b/spring-batch-core/src/main/resources/org/springframework/batch/core/configuration/xml/spring-batch-2.0.xsd @@ -1,9 +1,7 @@ - @@ -20,53 +18,41 @@ Defines a job composed of a set of steps and transitions between steps. The job will be exposed - in the enclosing bean factory as a component of type Job that can be + in + the enclosing bean factory as a component of type Job + that can be launched using a JobLauncher. - - - - - - - - - - - - - - + + + + + + - Defines a stage in job processing. The name - attribute has to match the id of a bean definition for + Defines a stage in job processing backed by a Step. The name + attribute has to match the id of a + bean definition for a Step. The next attribute is a synonym for <next on="*" .../> - - - - A sequence of next elements specifies the possible transitions from this step to the next one. - - - - - The step name is a reference to another bean definition where business logic is specified. The reference is usually an implementation of Step. - - - + + + + + The step name is a reference to another bean definition where business logic is specified. + + + + @@ -85,19 +71,99 @@ specific match will be chosen to select the next step. Hint: always include a de The name of the step to go to next. Must resolve to one of the other steps in this job. - + + - + Declares job should be paused at this point and provides pointer where execution should continue. + + + + + + Declares job should query a decider to determine where execution should go next. + + - + + + + + +The decider is a reference to a JobExecutionDecider that can produce a status to base the next transition on. + + + + + + + + + Declares job should split here into two or more subflows. + + + + + + + A subflow within a job, having the same format as a job, but without a separate identity. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A sequence of next elements specifies the possible transitions from this step to the next one. + + + + + \ No newline at end of file