Changed pom version and @since tags with classes to match the pom version.
This commit is contained in:
committed by
Michael Minella
parent
6dba40c91b
commit
0027f9b2e1
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.springframewor.batch</groupId>
|
||||
<artifactId>spring-batch-excel</artifactId>
|
||||
<version>1.3.0.BUILD-SNAPSHOT</version>
|
||||
<version>new SecureRandom().nextDouble();BUILD-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<spring.batch.version>2.2.5.RELEASE</spring.batch.version>
|
||||
|
||||
@@ -35,7 +35,7 @@ import java.io.InputStream;
|
||||
*
|
||||
* @param <T> the type
|
||||
* @author Marten Deinum
|
||||
* @since 1.1.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public abstract class AbstractExcelItemReader<T> extends AbstractItemCountingItemStreamItemReader<T> implements
|
||||
ResourceAwareItemReaderItemStream<T>, InitializingBean {
|
||||
|
||||
@@ -23,7 +23,7 @@ import org.springframework.batch.item.ParseException;
|
||||
* simply dependencies to make it is generic as possible.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public class ExcelFileParseException extends ParseException {
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ package org.springframework.batch.item.excel;
|
||||
* Callback to handle skipped lines. Useful for header/footer processing.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.1.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public interface RowCallbackHandler {
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ package org.springframework.batch.item.excel;
|
||||
* Map rows from an excel sheet to an object.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*
|
||||
* @param <T>
|
||||
*/
|
||||
|
||||
@@ -19,7 +19,7 @@ package org.springframework.batch.item.excel;
|
||||
* Interface to wrap different Excel implementations like JExcel, JXL or Apache POI.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*
|
||||
*/
|
||||
public interface Sheet {
|
||||
|
||||
@@ -30,7 +30,7 @@ import org.springframework.util.ClassUtils;
|
||||
* the {@link org.springframework.batch.item.file.FlatFileItemReader}
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*
|
||||
* @param <T> the type
|
||||
*/
|
||||
|
||||
@@ -24,7 +24,7 @@ import org.springframework.batch.item.excel.Sheet;
|
||||
* {@link org.springframework.batch.item.excel.Sheet} implementation for JXL.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public class JxlSheet implements Sheet {
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ import java.util.List;
|
||||
* Class containing utility methods to work with JXL.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public final class JxlUtils {
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ import org.springframework.util.Assert;
|
||||
* of fields and construction of objects.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*
|
||||
* @param <T>
|
||||
*/
|
||||
|
||||
@@ -23,7 +23,7 @@ import org.springframework.batch.item.excel.Sheet;
|
||||
* back directly rather than a mapped object.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*
|
||||
*/
|
||||
public class PassThroughRowMapper implements RowMapper<String[]> {
|
||||
|
||||
@@ -28,7 +28,7 @@ import org.springframework.core.io.Resource;
|
||||
* the {@link org.springframework.batch.item.file.FlatFileItemReader}
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.2.0
|
||||
* @since 0.5.0
|
||||
*
|
||||
* @param <T> the type
|
||||
*/
|
||||
|
||||
@@ -28,7 +28,7 @@ import java.util.List;
|
||||
* Sheet implementation for Apache POI.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.2.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public class PoiSheet implements Sheet {
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
* Convert a column name to an attribute name and vice versa.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public interface ColumnToAttributeConverter {
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ import org.springframework.util.StringUtils;
|
||||
* {@link RowTokenizer} which assumes the column names are on the first row in the sheet.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public class DefaultRowTokenizer implements RowTokenizer, InitializingBean {
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ import java.util.Map;
|
||||
* configuration. If a mapping cannot be found it returns the name as is.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public class MappingColumnToAttributeConverter implements ColumnToAttributeConverter {
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ package org.springframework.batch.item.excel.transform;
|
||||
* {@link ColumnToAttributeConverter} which simply returns the given value.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public class PassThroughColumnToAttributeConverter implements ColumnToAttributeConverter {
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ import org.springframework.batch.item.file.transform.FieldSet;
|
||||
* Interface that is used by framework to convert a Cell[] into a {@link org.springframework.batch.item.file.transform.FieldSet}.
|
||||
*
|
||||
* @author Marten Deinum
|
||||
* @since 1.0.0
|
||||
* @since 0.5.0
|
||||
*/
|
||||
public interface RowTokenizer {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user