[BATCH-430] Created an item.adapter package and moved adapter implementations there.

This commit is contained in:
nebhale
2008-03-07 13:27:40 +00:00
parent 125fcd8e9c
commit b2396b3ef4
12 changed files with 21 additions and 14 deletions

View File

@@ -1,9 +1,10 @@
package org.springframework.batch.item.reader;
package org.springframework.batch.item.adapter;
import java.util.ArrayList;
import java.util.List;
import org.springframework.batch.io.sample.domain.FooService;
import org.springframework.batch.item.adapter.ItemReaderAdapter;
import org.springframework.test.AbstractDependencyInjectionSpringContextTests;
/**
@@ -11,7 +12,7 @@ import org.springframework.test.AbstractDependencyInjectionSpringContextTests;
*
* @author Robert Kasanicky
*/
public class DelegatingItemReaderIntegrationTests extends AbstractDependencyInjectionSpringContextTests {
public class ItemReaderAdapterTests extends AbstractDependencyInjectionSpringContextTests {
private ItemReaderAdapter provider;

View File

@@ -1,10 +1,11 @@
package org.springframework.batch.item.writer;
package org.springframework.batch.item.adapter;
import java.util.List;
import org.springframework.batch.io.sample.domain.Foo;
import org.springframework.batch.io.sample.domain.FooService;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.adapter.ItemWriterAdapter;
import org.springframework.test.AbstractDependencyInjectionSpringContextTests;
/**

View File

@@ -1,9 +1,10 @@
package org.springframework.batch.item.writer;
package org.springframework.batch.item.adapter;
import java.util.List;
import org.springframework.batch.io.sample.domain.Foo;
import org.springframework.batch.io.sample.domain.FooService;
import org.springframework.batch.item.adapter.PropertyExtractingDelegatingItemWriter;
import org.springframework.test.AbstractDependencyInjectionSpringContextTests;
/**