Incomplete - task 84: Fix samples

Fix restart sample - StepExecutionDao was not restoring execution context
This commit is contained in:
dsyer
2008-02-26 13:19:14 +00:00
parent 5e09d034e0
commit 2b32b8d38e
5 changed files with 52 additions and 36 deletions

View File

@@ -99,7 +99,7 @@ public class ExecutionContext {
if (!type.isInstance(value)) {
throw new ClassCastException("Value for key=[" + key + "] is not of type: [" + type
+ "], it is [" + (value == null ? null : value) + "]");
+ "], it is [" + (value == null ? null : "("+value.getClass()+")"+value) + "]");
}
return value;