1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.jumpmind.symmetric.service.mock;
21
22 import java.util.List;
23
24 import org.jumpmind.symmetric.model.NodeChannel;
25 import org.jumpmind.symmetric.model.OutgoingBatch;
26 import org.jumpmind.symmetric.model.OutgoingBatchHistory;
27 import org.jumpmind.symmetric.model.OutgoingBatch.Status;
28 import org.jumpmind.symmetric.service.IOutgoingBatchService;
29
30 public class MockOutgoingBatchService implements IOutgoingBatchService {
31
32 public void buildOutgoingBatches(String nodeId, List<NodeChannel> channels) {
33
34 }
35
36 public void buildOutgoingBatches(String nodeId, NodeChannel channel) {
37
38 }
39
40 public List<OutgoingBatch> getOutgoingBatchRange(String startBatchId, String endBatchId) {
41 return null;
42 }
43
44 public List<OutgoingBatch> getOutgoingBatcheErrors(int maxRows) {
45 return null;
46 }
47
48 public List<OutgoingBatch> getOutgoingBatches(String nodeId) {
49 return null;
50 }
51
52 public void insertOutgoingBatch(OutgoingBatch outgoingBatch) {
53
54 }
55
56 public boolean isInitialLoadComplete(String nodeId) {
57 return false;
58 }
59
60 public void markOutgoingBatchSent(OutgoingBatch batch) {
61
62 }
63
64 public void setBatchStatus(long batchId, Status status) {
65
66 }
67
68 public List<OutgoingBatchHistory> findOutgoingBatchHistory(long batchId, String nodeId) {
69 return null;
70 }
71
72 public void insertOutgoingBatchHistory(OutgoingBatchHistory history) {
73 }
74
75 }