Rename provider package as "reader"

This commit is contained in:
dsyer
2008-01-02 14:41:06 +00:00
parent 98a050950a
commit c423fff306
55 changed files with 70 additions and 59 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.sample.item.provider;
package org.springframework.batch.sample.item.reader;
import java.util.ArrayList;
@@ -25,7 +25,7 @@ import org.springframework.batch.core.domain.StepExecution;
import org.springframework.batch.io.file.mapping.FieldSet;
import org.springframework.batch.io.file.mapping.FieldSetMapper;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.provider.AbstractItemReader;
import org.springframework.batch.item.reader.AbstractItemReader;
import org.springframework.batch.item.validator.Validator;
import org.springframework.batch.sample.domain.Address;
import org.springframework.batch.sample.domain.BillingInfo;

View File

@@ -1,4 +1,4 @@
package org.springframework.batch.sample.item.provider;
package org.springframework.batch.sample.item.reader;
import java.sql.ResultSet;
import java.sql.SQLException;

View File

@@ -18,7 +18,7 @@ package org.springframework.batch.sample.mapping;
import org.springframework.batch.io.file.mapping.FieldSet;
import org.springframework.batch.io.file.mapping.FieldSetMapper;
import org.springframework.batch.item.provider.AggregateItemReader;
import org.springframework.batch.item.reader.AggregateItemReader;
import org.springframework.batch.sample.domain.Trade;