Replaced snapshot versions and addressed deprications
This commit moves all SNAPSHOT dependencies to the latest available released versions. It also addresses a number of deprications in the Spring Data realm. Specifically around the deprication of the Neo4JOperations and the package reorganization within Hibernate.
This commit is contained in:
@@ -66,7 +66,7 @@ public class AggregateItem<T> {
|
||||
private boolean header = false;
|
||||
|
||||
/**
|
||||
* @param item
|
||||
* @param item the item to wrap
|
||||
*/
|
||||
public AggregateItem(T item) {
|
||||
super();
|
||||
|
||||
@@ -48,8 +48,7 @@ public class AggregateItemReader<T> implements ItemReader<List<T>> {
|
||||
|
||||
/**
|
||||
* Get the next list of records.
|
||||
* @throws Exception
|
||||
*
|
||||
*
|
||||
* @see org.springframework.batch.item.ItemReader#read()
|
||||
*/
|
||||
@Override
|
||||
|
||||
@@ -56,7 +56,6 @@ public class OrderItemReader implements ItemReader<Order> {
|
||||
private ItemReader<FieldSet> fieldSetReader;
|
||||
|
||||
/**
|
||||
* @throws Exception
|
||||
* @see org.springframework.batch.item.ItemReader#read()
|
||||
*/
|
||||
@Override
|
||||
|
||||
@@ -55,7 +55,8 @@ public class OrderLineAggregator implements LineAggregator<Order> {
|
||||
/**
|
||||
* Set aggregators for all types of lines in the output file
|
||||
*
|
||||
* @param aggregators
|
||||
* @param aggregators Map of LineAggregators used to map the various record types for
|
||||
* each order
|
||||
*/
|
||||
public void setAggregators(Map<String, LineAggregator<Object>> aggregators) {
|
||||
this.aggregators = aggregators;
|
||||
|
||||
@@ -75,8 +75,8 @@ public class CompositeCustomerUpdateLineTokenizer extends StepExecutionListenerS
|
||||
/**
|
||||
* Set the {@link LineTokenizer} that will be used to tokenize any lines that begin with
|
||||
* A, U, or D, and are thus a customer operation.
|
||||
*
|
||||
* @param customerTokenizer
|
||||
*
|
||||
* @param customerTokenizer tokenizer to delegate to for customer operation records
|
||||
*/
|
||||
public void setCustomerTokenizer(LineTokenizer customerTokenizer) {
|
||||
this.customerTokenizer = customerTokenizer;
|
||||
@@ -86,7 +86,7 @@ public class CompositeCustomerUpdateLineTokenizer extends StepExecutionListenerS
|
||||
* Set the {@link LineTokenizer} that will be used to tokenize any lines that being with
|
||||
* F and is thus a footer record.
|
||||
*
|
||||
* @param footerTokenizer
|
||||
* @param footerTokenizer tokenizer to delegate to for footer records
|
||||
*/
|
||||
public void setFooterTokenizer(LineTokenizer footerTokenizer) {
|
||||
this.footerTokenizer = footerTokenizer;
|
||||
|
||||
@@ -44,7 +44,7 @@ public class Trade implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param id
|
||||
* @param id id of the trade
|
||||
*/
|
||||
public Trade(long id) {
|
||||
this.id = id;
|
||||
|
||||
@@ -44,7 +44,7 @@ public class LimitDecider implements JobExecutionDecider {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param limit
|
||||
* @param limit number of times to return "CONTINUE"
|
||||
*/
|
||||
public void setLimit(int limit) {
|
||||
this.limit = limit;
|
||||
|
||||
Reference in New Issue
Block a user