File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
spring-batch-infrastructure/src/main/java/org/springframework/batch/item Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 23
23
* @author Dave Syer
24
24
* @author Dean de Bree
25
25
* @author Mahmoud Ben Hassine
26
- * @deprecated since 5.0 in favor of using default methods in the {@link ItemStream}
27
- * interface. Scheduled for removal in 5.2.
28
26
*
29
27
*/
30
- @ Deprecated (since = "5.0" , forRemoval = true )
31
28
public abstract class ItemStreamSupport implements ItemStream {
32
29
33
30
private final ExecutionContextUserSupport executionContextUserSupport = new ExecutionContextUserSupport ();
34
31
35
32
/**
36
33
* No-op.
37
34
* @see org.springframework.batch.item.ItemStream#close()
35
+ * @deprecated since 5.0 in favor of {@link ItemStream#close()}. Scheduled for removal
36
+ * in 5.2.
38
37
*/
38
+ @ Deprecated (since = "5.0" , forRemoval = true )
39
39
@ Override
40
40
public void close () {
41
41
}
42
42
43
43
/**
44
44
* No-op.
45
45
* @see org.springframework.batch.item.ItemStream#open(ExecutionContext)
46
+ * @deprecated since 5.0 in favor of {@link ItemStream#open(ExecutionContext)} ()}.
47
+ * Scheduled for removal in 5.2.
46
48
*/
47
49
@ Override
50
+ @ Deprecated (since = "5.0" , forRemoval = true )
48
51
public void open (ExecutionContext executionContext ) {
49
52
}
50
53
51
54
/**
52
55
* Return empty {@link ExecutionContext}.
53
56
* @see org.springframework.batch.item.ItemStream#update(ExecutionContext)
57
+ * @deprecated since 5.0 in favor of {@link ItemStream#update(ExecutionContext)} ()}.
58
+ * Scheduled for removal in 5.2.
54
59
*/
55
60
@ Override
61
+ @ Deprecated (since = "5.0" , forRemoval = true )
56
62
public void update (ExecutionContext executionContext ) {
57
63
}
58
64
You can’t perform that action at this time.
0 commit comments