RESOLVED - issue BATCH-789: Remove mark/reset from ItemReader

Remove AbstractItemReader.  All done (with remaining issues moved to BATCH-220).
This commit is contained in:
dsyer
2008-08-21 12:11:22 +00:00
parent 300e726909
commit fcf96a954f
16 changed files with 43 additions and 75 deletions

View File

@@ -1,12 +1,11 @@
package example;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.support.AbstractItemReader;
/**
* {@link ItemReader} with hard-coded input data.
*/
public class ExampleItemReader extends AbstractItemReader<String> {
public class ExampleItemReader implements ItemReader<String> {
private String[] input = {"Hello world!", null};