Review process. Consolidated some related support packages in infrastructure.

This commit is contained in:
dsyer
2008-03-14 10:30:18 +00:00
parent fe79a4dbe0
commit 044bc4e192
45 changed files with 58 additions and 69 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.item.reader;
package org.springframework.batch.item.jms;
import javax.jms.Destination;
import javax.jms.JMSException;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of item provider concerns.
</p>
</body>
</html>

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Generic implementations of ItemStream
</p>
</body>
</html>

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.item.reader;
package org.springframework.batch.item.support;
import java.util.ArrayList;
import java.util.Collection;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.item.stream;
package org.springframework.batch.item.support;
import java.util.ArrayList;
import java.util.Arrays;

View File

@@ -1,4 +1,4 @@
package org.springframework.batch.item.writer;
package org.springframework.batch.item.support;
import java.util.Iterator;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.item.reader;
package org.springframework.batch.item.support;
import org.springframework.batch.item.AbstractItemReader;
import org.springframework.batch.item.ItemReader;

View File

@@ -1,4 +1,4 @@
package org.springframework.batch.item.writer;
package org.springframework.batch.item.support;
import org.springframework.batch.item.ClearFailedException;
import org.springframework.batch.item.FlushFailedException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.item.reader;
package org.springframework.batch.item.support;
import java.util.ArrayList;
import java.util.List;

View File

@@ -1,7 +1,7 @@
package org.springframework.batch.item.transform;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.writer.DelegatingItemWriter;
import org.springframework.batch.item.support.DelegatingItemWriter;
import org.springframework.util.Assert;
/**

View File

@@ -1,4 +1,4 @@
package org.springframework.batch.item.support;
package org.springframework.batch.item.util;
import java.io.File;
import java.io.IOException;

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.item.validator;
import org.springframework.batch.item.reader.DelegatingItemReader;
import org.springframework.batch.item.support.DelegatingItemReader;
import org.springframework.util.Assert;
/**

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of item processing concerns.
</p>
</body>
</html>

View File

@@ -21,7 +21,7 @@ import org.springframework.batch.item.ExecutionContextUserSupport;
import org.springframework.batch.item.FlushFailedException;
import org.springframework.batch.item.ItemStream;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.FileUtils;
import org.springframework.batch.item.util.FileUtils;
import org.springframework.batch.item.xml.stax.NoStartEndDocumentStreamWriter;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.core.io.Resource;