From 0a404494bb9c9eedb62df0f0e49f16d4d513ee27 Mon Sep 17 00:00:00 2001 From: lucasward Date: Thu, 9 Oct 2008 05:09:12 +0000 Subject: [PATCH] OPEN - issue BATCH-823: Confusing explanation http://jira.springframework.org/browse/BATCH-823 Simplified the description of StepExecution --- docs/src/site/docbook/reference/core.xml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/docs/src/site/docbook/reference/core.xml b/docs/src/site/docbook/reference/core.xml index 1abc19220..a3ce5cf3c 100644 --- a/docs/src/site/docbook/reference/core.xml +++ b/docs/src/site/docbook/reference/core.xml @@ -615,20 +615,13 @@ StepExecution A StepExecution represents a single attempt - to execute a Step. Using the example from - JobExecution, if there is a - JobInstance for the "EndOfDayJob", with - JobParameters of "01-01-2008" that fails to - successfully complete its work the first time it is run, when it is - executed again, a new StepExecution will be - created. Each of these step executions may represent a different - invocation of the batch framework, but they will all correspond to the - same JobInstance, just as multiple - JobExecutions belong to the same - JobInstance. However, if a step fails to execute - because the step before it fails, there will be no execution persisted - for it. An execution will only be created when the - Step is actually started. + to execute a Step. A new + StepExecution will be created each time a Step is + run, similar to JobExecution. However, if a step + fails to execute because the step before it fails, there will be no + execution persisted for it. A StepExecution will + only be created when it's Step is actually + started. Step executions are represented by objects of the StepExecution class. Each execution contains a