BATCH-&*&: work in progress (some tests disabled)

This commit is contained in:
dsyer
2008-08-19 13:49:38 +00:00
parent cfc9529bab
commit 75fca027cb
39 changed files with 276 additions and 362 deletions

View File

@@ -1,5 +1,7 @@
package example;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.batch.item.ItemWriter;
@@ -16,7 +18,7 @@ public class ExampleItemWriter extends AbstractItemWriter<Object> {
/**
* @see ItemWriter#write(Object)
*/
public void write(Object data) throws Exception {
public void write(List<? extends Object> data) throws Exception {
log.info(data);
}