IN PROGRESS - issue BATCH-145: Move CollectionItemProvider to infrastructure from samples

http://opensource.atlassian.com/projects/spring/browse/BATCH-145
This commit is contained in:
dsyer
2007-10-21 15:28:51 +00:00
parent 7352cdfe5f
commit 18dcbd6a70

View File

@@ -21,9 +21,21 @@ package org.springframework.batch.io.file;
* Interface that is used to map data obtained from a file into an object.
*
* @author tomas.slanina
* @author Dave Syer
*
*/
public interface FieldSetMapper {
/**
* Marker for the beginning of a multi-object record.
*/
static Object BEGIN_RECORD = new Object();
/**
* Marker for the end of a multi-object record.
*/
static Object END_RECORD = new Object();
/**
* Method used to map data obtained from a file into an object.
*/