1
2
3
4
5
6
7
8
9
10
11 package psiprobe.model.jmx;
12
13
14
15
16 public class SyncClusterSender extends ClusterSender {
17
18
19 private long dataFailureCounter;
20
21
22 private long dataResendCounter;
23
24
25 private long socketOpenCounter;
26
27
28 private long socketCloseCounter;
29
30
31 private long socketOpenFailureCounter;
32
33
34
35
36
37
38 public long getDataFailureCounter() {
39 return dataFailureCounter;
40 }
41
42
43
44
45
46
47 public void setDataFailureCounter(long dataFailureCounter) {
48 this.dataFailureCounter = dataFailureCounter;
49 }
50
51
52
53
54
55
56 public long getDataResendCounter() {
57 return dataResendCounter;
58 }
59
60
61
62
63
64
65 public void setDataResendCounter(long dataResendCounter) {
66 this.dataResendCounter = dataResendCounter;
67 }
68
69
70
71
72
73
74 public long getSocketOpenCounter() {
75 return socketOpenCounter;
76 }
77
78
79
80
81
82
83 public void setSocketOpenCounter(long socketOpenCounter) {
84 this.socketOpenCounter = socketOpenCounter;
85 }
86
87
88
89
90
91
92 public long getSocketCloseCounter() {
93 return socketCloseCounter;
94 }
95
96
97
98
99
100
101 public void setSocketCloseCounter(long socketCloseCounter) {
102 this.socketCloseCounter = socketCloseCounter;
103 }
104
105
106
107
108
109
110 public long getSocketOpenFailureCounter() {
111 return socketOpenFailureCounter;
112 }
113
114
115
116
117
118
119 public void setSocketOpenFailureCounter(long socketOpenFailureCounter) {
120 this.socketOpenFailureCounter = socketOpenFailureCounter;
121 }
122
123 }