@@ -46,9 +46,6 @@ public class TransportClientFactoryBean implements FactoryBean<TransportClient>,
46
46
private Boolean clientIgnoreClusterName ;
47
47
private String clientPingTimeout ;
48
48
private String clientNodesSamplerInterval ;
49
- private Boolean clientIgnoreClusterName ;
50
- private String clientPingTimeout ;
51
- private String clientNodesSamplerInterval ;
52
49
private TransportClient client ;
53
50
private Properties properties ;
54
51
static final String COLON = ":" ;
@@ -121,8 +118,6 @@ public void setClusterName(String clusterName) {
121
118
this .clusterName = clusterName ;
122
119
}
123
120
124
- }
125
-
126
121
public void setClientTransportSniff (Boolean clientTransportSniff ) {
127
122
this .clientTransportSniff = clientTransportSniff ;
128
123
}
@@ -151,30 +146,6 @@ public void setClientIgnoreClusterName(Boolean clientIgnoreClusterName) {
151
146
this .clientIgnoreClusterName = clientIgnoreClusterName ;
152
147
}
153
148
154
- public String getClientNodesSamplerInterval () {
155
- return clientNodesSamplerInterval ;
156
- }
157
-
158
- public void setClientNodesSamplerInterval (String clientNodesSamplerInterval ) {
159
- this .clientNodesSamplerInterval = clientNodesSamplerInterval ;
160
- }
161
-
162
- public String getClientPingTimeout () {
163
- return clientPingTimeout ;
164
- }
165
-
166
- public void setClientPingTimeout (String clientPingTimeout ) {
167
- this .clientPingTimeout = clientPingTimeout ;
168
- }
169
-
170
- public Boolean getClientIgnoreClusterName () {
171
- return clientIgnoreClusterName ;
172
- }
173
-
174
- public void setClientIgnoreClusterName (Boolean clientIgnoreClusterName ) {
175
- this .clientIgnoreClusterName = clientIgnoreClusterName ;
176
- }
177
-
178
149
public void setProperties (Properties properties ) {
179
150
this .properties = properties ;
180
151
}
0 commit comments