RESOLVED - BATCH-29: All domain entities and scoping abstractions (RepeatContext in particular) need to be Serializable
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
*/
|
||||
package org.springframework.batch.core;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.Iterator;
|
||||
@@ -24,7 +25,7 @@ import org.apache.commons.lang.builder.HashCodeBuilder;
|
||||
* @author Lucas Ward
|
||||
* @since 1.0
|
||||
*/
|
||||
public class JobParameters {
|
||||
public class JobParameters implements Serializable {
|
||||
|
||||
private final Map stringMap;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user