Move specific reader/writer to subpackages

This commit is contained in:
dsyer
2008-07-03 15:42:36 +00:00
parent f1b0c31ca9
commit 8a10ccb1ee
54 changed files with 105 additions and 63 deletions

View File

@@ -2,7 +2,7 @@ package org.springframework.batch.sample.item.writer;
import java.math.BigDecimal;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.sample.dao.CustomerCreditDao;
import org.springframework.batch.sample.domain.CustomerCredit;

View File

@@ -16,7 +16,7 @@
package org.springframework.batch.sample.item.writer;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.sample.dao.CustomerCreditDao;
import org.springframework.batch.sample.domain.CustomerCredit;

View File

@@ -16,7 +16,7 @@
package org.springframework.batch.sample.item.writer;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.sample.dao.CustomerDebitDao;
import org.springframework.batch.sample.dao.JdbcCustomerDebitDao;
import org.springframework.batch.sample.domain.CustomerDebit;

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.sample.item.writer;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
/**
* @author Dave Syer

View File

@@ -3,7 +3,7 @@ package org.springframework.batch.sample.item.writer;
import java.util.ArrayList;
import java.util.List;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.item.validator.ValidationException;
/**

View File

@@ -18,7 +18,7 @@ package org.springframework.batch.sample.item.writer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.sample.domain.Person;

View File

@@ -1,6 +1,6 @@
package org.springframework.batch.sample.item.writer;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.sample.dao.PlayerDao;
import org.springframework.batch.sample.domain.Player;

View File

@@ -1,6 +1,6 @@
package org.springframework.batch.sample.item.writer;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
/**
* Simulates temporary output trouble - requires to

View File

@@ -18,7 +18,7 @@ package org.springframework.batch.sample.item.writer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
import org.springframework.batch.sample.dao.TradeDao;
import org.springframework.batch.sample.domain.Trade;