IN PROGRESS - issue BATCH-7: Remove transaction synchronization and state management from input/output sources (formerly buffering)

http://jira.springframework.org/browse/BATCH-7

Remove GenericStreamContext
This commit is contained in:
dsyer
2008-02-02 15:16:20 +00:00
parent d1ab2086a6
commit 2d1ccb0cc6
30 changed files with 60 additions and 151 deletions

View File

@@ -16,10 +16,7 @@
package org.springframework.batch.core.domain;
import java.util.Properties;
import org.springframework.batch.item.StreamContext;
import org.springframework.batch.item.stream.GenericStreamContext;
/**
* <p>
@@ -52,7 +49,7 @@ public class StepInstance extends Entity {
private BatchStatus status;
private StreamContext streamContext = new GenericStreamContext(new Properties());
private StreamContext streamContext = new StreamContext();
private int stepExecutionCount = 0;