1 |
|
package org.apache.torque.mojo; |
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
import static org.apache.commons.lang.StringUtils.isEmpty; |
23 |
|
import static org.apache.commons.lang.StringUtils.split; |
24 |
|
|
25 |
|
import java.io.File; |
26 |
|
import java.lang.reflect.InvocationTargetException; |
27 |
|
import java.sql.Connection; |
28 |
|
import java.sql.SQLException; |
29 |
|
import java.util.Collection; |
30 |
|
import java.util.Map; |
31 |
|
import java.util.Properties; |
32 |
|
import java.util.Vector; |
33 |
|
|
34 |
|
import org.apache.commons.beanutils.BeanUtils; |
35 |
|
import org.apache.commons.lang.StringUtils; |
36 |
|
import org.apache.maven.plugin.MojoExecutionException; |
37 |
|
import org.apache.maven.settings.Server; |
38 |
|
import org.apache.maven.shared.filtering.MavenFileFilter; |
39 |
|
import org.apache.torque.engine.platform.Platform; |
40 |
|
import org.apache.torque.engine.platform.PlatformFactory; |
41 |
|
import org.apache.torque.util.JdbcConfigurer; |
42 |
|
import org.apache.torque.util.MojoDatabaseListener; |
43 |
|
import org.kuali.core.db.torque.PropertyHandlingException; |
44 |
|
import org.kuali.core.db.torque.Utils; |
45 |
|
import org.kuali.db.jdbc.ConnectionHandler; |
46 |
|
import org.kuali.db.jdbc.Credentials; |
47 |
|
import org.kuali.db.jdbc.JDBCUtils; |
48 |
|
import org.kuali.db.jdbc.SQLExecutor; |
49 |
|
import org.kuali.db.jdbc.Transaction; |
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
|
|
| 0% |
Uncovered Elements: 275 (275) |
Complexity: 97 |
Complexity Density: 0.58 |
|
54 |
|
public abstract class AbstractSQLExecutorMojo extends BaseMojo { |
55 |
|
Utils utils = new Utils(); |
56 |
|
JDBCUtils jdbcUtils; |
57 |
|
ConnectionHandler connectionHandler; |
58 |
|
Platform platform; |
59 |
|
|
60 |
|
public static final String DRIVER_INFO_PROPERTIES_USER = "user"; |
61 |
|
public static final String DRIVER_INFO_PROPERTIES_PASSWORD = "password"; |
62 |
|
|
63 |
|
|
64 |
|
@link |
65 |
|
|
66 |
|
public static final String FILE_SORTING_ASC = "ascending"; |
67 |
|
|
68 |
|
|
69 |
|
@link |
70 |
|
|
71 |
|
public static final String FILE_SORTING_DSC = "descending"; |
72 |
|
|
73 |
|
|
74 |
|
|
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
|
82 |
|
String targetDatabase; |
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
String username; |
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
String password; |
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
|
103 |
|
|
104 |
|
|
105 |
|
boolean enableAnonymousPassword; |
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
|
111 |
|
|
112 |
|
boolean enableAnonymousUsername; |
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
String driverProperties; |
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
|
125 |
|
|
126 |
|
boolean showPassword; |
127 |
|
|
128 |
|
|
129 |
|
|
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
String settingsKey; |
134 |
|
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
boolean skipOnConnectionError; |
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
String sqlCommand = ""; |
149 |
|
|
150 |
|
|
151 |
|
|
152 |
|
|
153 |
|
|
154 |
|
|
155 |
|
File[] srcFiles; |
156 |
|
|
157 |
|
|
158 |
|
|
159 |
|
|
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
String url; |
164 |
|
|
165 |
|
|
166 |
|
|
167 |
|
|
168 |
|
|
169 |
|
|
170 |
|
|
171 |
|
|
172 |
|
|
173 |
|
String driver; |
174 |
|
|
175 |
|
|
176 |
|
|
177 |
|
|
178 |
|
|
179 |
|
|
180 |
|
|
181 |
|
boolean autocommit; |
182 |
|
|
183 |
|
|
184 |
|
|
185 |
|
|
186 |
|
|
187 |
|
|
188 |
|
String onError = SQLExecutor.ON_ERROR_ABORT; |
189 |
|
|
190 |
|
|
191 |
|
|
192 |
|
|
193 |
|
|
194 |
|
|
195 |
|
|
196 |
|
|
197 |
|
String delimiter = "/"; |
198 |
|
|
199 |
|
|
200 |
|
|
201 |
|
|
202 |
|
|
203 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
String delimiterType = DelimiterType.ROW; |
209 |
|
|
210 |
|
|
211 |
|
|
212 |
|
|
213 |
|
|
214 |
|
|
215 |
|
boolean keepFormat = true; |
216 |
|
|
217 |
|
|
218 |
|
|
219 |
|
|
220 |
|
|
221 |
|
|
222 |
|
boolean showheaders = true; |
223 |
|
|
224 |
|
|
225 |
|
|
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
boolean append = false; |
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
237 |
|
boolean escapeProcessing = true; |
238 |
|
|
239 |
|
|
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
|
244 |
|
int successfulStatements = 0; |
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
|
249 |
|
int totalStatements = 0; |
250 |
|
|
251 |
|
|
252 |
|
|
253 |
|
|
254 |
|
Connection conn = null; |
255 |
|
|
256 |
|
|
257 |
|
|
258 |
|
|
259 |
|
Vector<Transaction> transactions = new Vector<Transaction>(); |
260 |
|
|
261 |
|
|
262 |
|
|
263 |
|
|
264 |
|
MavenFileFilter fileFilter; |
265 |
|
|
266 |
|
|
267 |
|
|
268 |
|
|
269 |
|
Credentials credentials; |
270 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
271 |
0
|
protected void configureTransactions() throws MojoExecutionException {... |
272 |
|
|
273 |
|
} |
274 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 1 |
Complexity Density: 0.14 |
|
275 |
0
|
protected Properties getContextProperties() {... |
276 |
0
|
Properties properties = new Properties(); |
277 |
0
|
Map<String, String> environment = System.getenv(); |
278 |
0
|
for (String key : environment.keySet()) { |
279 |
0
|
properties.put("env." + key, environment.get(key)); |
280 |
|
} |
281 |
0
|
properties.putAll(getProject().getProperties()); |
282 |
0
|
properties.putAll(System.getProperties()); |
283 |
0
|
return properties; |
284 |
|
} |
285 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
286 |
0
|
protected Credentials getNewCredentials() {... |
287 |
0
|
Credentials credentials = new Credentials(); |
288 |
0
|
credentials.setUsername(getUsername()); |
289 |
0
|
credentials.setPassword(getPassword()); |
290 |
0
|
return credentials; |
291 |
|
} |
292 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.4 |
|
293 |
0
|
protected ConnectionHandler getNewConnectionHandler() throws MojoExecutionException {... |
294 |
0
|
ConnectionHandler connectionHandler = new ConnectionHandler(); |
295 |
0
|
try { |
296 |
0
|
BeanUtils.copyProperties(connectionHandler, this); |
297 |
0
|
return connectionHandler; |
298 |
|
} catch (Exception e) { |
299 |
0
|
throw new MojoExecutionException("Error establishing connection", e); |
300 |
|
} |
301 |
|
} |
302 |
|
|
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
@throws |
307 |
|
|
|
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 4 |
Complexity Density: 0.22 |
|
308 |
0
|
@Override... |
309 |
|
public void executeMojo() throws MojoExecutionException { |
310 |
0
|
jdbcUtils = new JDBCUtils(); |
311 |
0
|
updateConfiguration(); |
312 |
0
|
Credentials credentials = getNewCredentials(); |
313 |
0
|
updateCredentials(credentials); |
314 |
0
|
validateCredentials(credentials); |
315 |
0
|
setCredentials(credentials); |
316 |
0
|
validateConfiguration(); |
317 |
|
|
318 |
0
|
connectionHandler = getNewConnectionHandler(); |
319 |
0
|
conn = getConnection(); |
320 |
|
|
321 |
0
|
if (connectionHandler.isConnectionError() && skipOnConnectionError) { |
322 |
|
|
323 |
|
|
324 |
0
|
return; |
325 |
|
} |
326 |
|
|
327 |
|
|
328 |
0
|
configureTransactions(); |
329 |
|
|
330 |
|
|
331 |
0
|
successfulStatements = 0; |
332 |
0
|
totalStatements = 0; |
333 |
|
|
334 |
|
|
335 |
0
|
SQLExecutor executor = getSqlExecutor(); |
336 |
|
|
337 |
0
|
try { |
338 |
0
|
executor.execute(); |
339 |
|
} catch (SQLException e) { |
340 |
0
|
throw new MojoExecutionException("Error executing SQL", e); |
341 |
|
} |
342 |
|
} |
343 |
|
|
344 |
|
|
345 |
|
|
346 |
|
|
347 |
|
@param |
348 |
|
|
349 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
350 |
0
|
public void addText(final String sql) {... |
351 |
0
|
this.sqlCommand += sql; |
352 |
|
} |
353 |
|
|
354 |
|
|
355 |
|
|
356 |
|
|
357 |
|
@param |
358 |
|
|
359 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
360 |
0
|
public void setDelimiter(final String delimiter) {... |
361 |
0
|
this.delimiter = delimiter; |
362 |
|
} |
363 |
|
|
364 |
|
|
365 |
|
|
366 |
|
|
367 |
|
@param |
368 |
|
|
369 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
370 |
0
|
public void setDelimiterType(final String delimiterType) {... |
371 |
0
|
this.delimiterType = delimiterType; |
372 |
|
} |
373 |
|
|
374 |
|
|
375 |
|
|
376 |
|
|
377 |
|
@param |
378 |
|
|
379 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
380 |
0
|
public void setShowheaders(final boolean showheaders) {... |
381 |
0
|
this.showheaders = showheaders; |
382 |
|
} |
383 |
|
|
384 |
|
|
385 |
|
|
386 |
|
|
387 |
|
@param |
388 |
|
|
389 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
390 |
0
|
public void setAppend(final boolean append) {... |
391 |
0
|
this.append = append; |
392 |
|
} |
393 |
|
|
394 |
|
|
395 |
|
|
396 |
|
|
397 |
|
@param |
398 |
|
|
399 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
400 |
0
|
public void setKeepFormat(final boolean keepformat) {... |
401 |
0
|
this.keepFormat = keepformat; |
402 |
|
} |
403 |
|
|
404 |
|
|
405 |
|
|
406 |
|
|
407 |
|
@param |
408 |
|
|
409 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
410 |
0
|
public void setEscapeProcessing(final boolean enable) {... |
411 |
0
|
escapeProcessing = enable; |
412 |
|
} |
413 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 3 |
Complexity Density: 0.43 |
|
414 |
0
|
protected SQLExecutor getSqlExecutor() throws MojoExecutionException {... |
415 |
0
|
try { |
416 |
0
|
SQLExecutor executor = new SQLExecutor(); |
417 |
0
|
BeanUtils.copyProperties(executor, this); |
418 |
0
|
executor.addListener(new MojoDatabaseListener(getLog())); |
419 |
0
|
return executor; |
420 |
|
} catch (InvocationTargetException e) { |
421 |
0
|
throw new MojoExecutionException("Error copying properties from the mojo to the SQL executor", e); |
422 |
|
} catch (IllegalAccessException e) { |
423 |
0
|
throw new MojoExecutionException("Error copying properties from the mojo to the SQL executor", e); |
424 |
|
} |
425 |
|
} |
426 |
|
|
427 |
|
|
428 |
|
|
429 |
|
|
430 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 0.5 |
|
431 |
0
|
protected void updateConfiguration() throws MojoExecutionException {... |
432 |
0
|
try { |
433 |
0
|
new JdbcConfigurer().updateConfiguration(this); |
434 |
|
} catch (PropertyHandlingException e) { |
435 |
0
|
throw new MojoExecutionException("Error handling properties", e); |
436 |
|
} |
437 |
0
|
platform = PlatformFactory.getPlatformFor(targetDatabase); |
438 |
|
} |
439 |
|
|
440 |
|
|
441 |
|
|
442 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
443 |
0
|
protected void validateConfiguration() throws MojoExecutionException {... |
444 |
0
|
new JdbcConfigurer().validateConfiguration(this); |
445 |
|
} |
446 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 4 |
Complexity Density: 0.57 |
|
447 |
0
|
protected void validateCredentials(final Credentials credentials, final boolean anonymousAccessAllowed,... |
448 |
|
final String validationFailureMessage) throws MojoExecutionException { |
449 |
0
|
if (anonymousAccessAllowed) { |
450 |
|
|
451 |
0
|
return; |
452 |
|
} |
453 |
0
|
String username = credentials.getUsername(); |
454 |
0
|
String password = credentials.getPassword(); |
455 |
0
|
if (!isEmpty(username) && !isEmpty(password)) { |
456 |
|
|
457 |
0
|
return; |
458 |
|
} |
459 |
0
|
throw new MojoExecutionException(validationFailureMessage); |
460 |
|
} |
461 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 1 |
Complexity Density: 0.1 |
|
462 |
0
|
protected void validateCredentials(final Credentials credentials) throws MojoExecutionException {... |
463 |
|
|
464 |
0
|
StringBuffer sb = new StringBuffer(); |
465 |
0
|
sb.append("\n\n"); |
466 |
0
|
sb.append("Username and password must be specified.\n"); |
467 |
0
|
sb.append("Specify them in the plugin configuration or as a system property.\n"); |
468 |
0
|
sb.append("\n"); |
469 |
0
|
sb.append("For example:\n"); |
470 |
0
|
sb.append("-Dusername=myuser\n"); |
471 |
0
|
sb.append("-Dpassword=mypassword\n"); |
472 |
0
|
sb.append("\n."); |
473 |
0
|
validateCredentials(credentials, enableAnonymousUsername && enableAnonymousPassword, sb.toString()); |
474 |
|
} |
475 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
476 |
0
|
protected boolean isNullOrEmpty(final Collection<?> c) {... |
477 |
0
|
if (c == null) { |
478 |
0
|
return true; |
479 |
|
} |
480 |
0
|
if (c.size() == 0) { |
481 |
0
|
return true; |
482 |
|
} |
483 |
0
|
return false; |
484 |
|
} |
485 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
486 |
0
|
protected String convertNullToEmpty(final String s) {... |
487 |
0
|
if (s == null) { |
488 |
0
|
return ""; |
489 |
|
} else { |
490 |
0
|
return s; |
491 |
|
} |
492 |
|
} |
493 |
|
|
494 |
|
|
495 |
|
|
496 |
|
|
497 |
|
@throws |
498 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
499 |
0
|
protected void updateCredentials(final Credentials credentials) {... |
500 |
0
|
Server server = getServerFromSettingsKey(); |
501 |
0
|
String username = getUpdatedUsername(server, credentials.getUsername()); |
502 |
0
|
String password = getUpdatedPassword(server, credentials.getPassword()); |
503 |
0
|
credentials.setUsername(convertNullToEmpty(username)); |
504 |
0
|
credentials.setPassword(convertNullToEmpty(password)); |
505 |
|
} |
506 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
507 |
0
|
protected Server getServerFromSettingsKey() {... |
508 |
0
|
Server server = getSettings().getServer(getSettingsKey()); |
509 |
0
|
if (server == null) { |
510 |
|
|
511 |
0
|
return getSettings().getServer("impex." + getUrl()); |
512 |
|
} else { |
513 |
0
|
return null; |
514 |
|
} |
515 |
|
} |
516 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
517 |
0
|
protected String getUpdatedPassword(final Server server, final String password) {... |
518 |
|
|
519 |
0
|
if (!isEmpty(password)) { |
520 |
0
|
return password; |
521 |
|
} |
522 |
0
|
if (server != null) { |
523 |
|
|
524 |
0
|
getLog().info( |
525 |
|
"Located a password in settings.xml under the server id '" + server.getId() + "' Password: " |
526 |
|
+ getDisplayPassword(server.getPassword())); |
527 |
0
|
return server.getPassword(); |
528 |
|
} |
529 |
0
|
getLog().info("Using default password generated from the artifact id"); |
530 |
0
|
return platform.getSchemaName(getProject().getArtifactId()); |
531 |
|
} |
532 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
533 |
0
|
protected String getDisplayPassword(final String password) {... |
534 |
0
|
if (isShowPassword()) { |
535 |
0
|
return password; |
536 |
|
} else { |
537 |
0
|
return StringUtils.repeat("*", password.length()); |
538 |
|
} |
539 |
|
} |
540 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
541 |
0
|
protected String getUpdatedUsername(final Server server, final String username) {... |
542 |
|
|
543 |
0
|
if (!isEmpty(username)) { |
544 |
0
|
return username; |
545 |
|
} |
546 |
0
|
if (server != null) { |
547 |
|
|
548 |
0
|
getLog().info( |
549 |
|
"Located a username in settings.xml under the server id '" + server.getId() + "' Username: " |
550 |
|
+ server.getUsername()); |
551 |
0
|
return server.getUsername(); |
552 |
|
} |
553 |
0
|
getLog().info("Using default username generated from the artifact id"); |
554 |
0
|
return platform.getSchemaName(getProject().getArtifactId()); |
555 |
|
} |
556 |
|
|
557 |
|
|
558 |
|
|
559 |
|
|
560 |
|
|
561 |
|
@return |
562 |
|
@throws |
563 |
|
|
564 |
|
@throws |
565 |
|
|
566 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 0.67 |
|
567 |
0
|
protected Connection getConnection() throws MojoExecutionException {... |
568 |
0
|
try { |
569 |
0
|
return connectionHandler.getConnection(); |
570 |
|
} catch (Exception e) { |
571 |
0
|
throw new MojoExecutionException("Error establishing connection", e); |
572 |
|
} |
573 |
|
} |
574 |
|
|
575 |
|
|
576 |
|
|
577 |
|
|
578 |
|
@return |
579 |
|
@throws |
580 |
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 4 |
Complexity Density: 0.4 |
|
581 |
0
|
protected Properties getDriverProperties() throws MojoExecutionException {... |
582 |
0
|
Properties properties = new Properties(); |
583 |
|
|
584 |
0
|
if (isEmpty(this.driverProperties)) { |
585 |
0
|
return properties; |
586 |
|
} |
587 |
|
|
588 |
0
|
String[] tokens = split(this.driverProperties, ","); |
589 |
0
|
for (int i = 0; i < tokens.length; ++i) { |
590 |
0
|
String[] keyValueTokens = split(tokens[i].trim(), "="); |
591 |
0
|
if (keyValueTokens.length != 2) { |
592 |
0
|
throw new MojoExecutionException("Invalid JDBC Driver properties: " + this.driverProperties); |
593 |
|
} |
594 |
0
|
properties.setProperty(keyValueTokens[0], keyValueTokens[1]); |
595 |
|
} |
596 |
0
|
return properties; |
597 |
|
} |
598 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
599 |
0
|
public String getUsername() {... |
600 |
0
|
return this.username; |
601 |
|
} |
602 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
603 |
0
|
public void setUsername(final String username) {... |
604 |
0
|
this.username = username; |
605 |
|
} |
606 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
607 |
0
|
public String getPassword() {... |
608 |
0
|
return this.password; |
609 |
|
} |
610 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
611 |
0
|
public void setPassword(final String password) {... |
612 |
0
|
this.password = password; |
613 |
|
} |
614 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
615 |
0
|
public String getUrl() {... |
616 |
0
|
return this.url; |
617 |
|
} |
618 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
619 |
0
|
public void setUrl(final String url) {... |
620 |
0
|
this.url = url; |
621 |
|
} |
622 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
623 |
0
|
public String getDriver() {... |
624 |
0
|
return this.driver; |
625 |
|
} |
626 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
627 |
0
|
public void setDriver(final String driver) {... |
628 |
0
|
this.driver = driver; |
629 |
|
} |
630 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
631 |
0
|
public void setAutocommit(final boolean autocommit) {... |
632 |
0
|
this.autocommit = autocommit; |
633 |
|
} |
634 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
635 |
0
|
public File[] getSrcFiles() {... |
636 |
0
|
return this.srcFiles; |
637 |
|
} |
638 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
639 |
0
|
public void setSrcFiles(final File[] files) {... |
640 |
0
|
this.srcFiles = files; |
641 |
|
} |
642 |
|
|
643 |
|
|
644 |
|
|
645 |
|
|
646 |
|
@return |
647 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
648 |
0
|
public int getSuccessfulStatements() {... |
649 |
0
|
return successfulStatements; |
650 |
|
} |
651 |
|
|
652 |
|
|
653 |
|
|
654 |
|
|
655 |
|
@return |
656 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
657 |
0
|
public int getTotalStatements() {... |
658 |
0
|
return totalStatements; |
659 |
|
} |
660 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
661 |
0
|
public String getOnError() {... |
662 |
0
|
return this.onError; |
663 |
|
} |
664 |
|
|
|
|
| 0% |
Uncovered Elements: 13 (13) |
Complexity: 4 |
Complexity Density: 0.57 |
|
665 |
0
|
public void setOnError(final String action) {... |
666 |
0
|
if (SQLExecutor.ON_ERROR_ABORT.equalsIgnoreCase(action)) { |
667 |
0
|
this.onError = SQLExecutor.ON_ERROR_ABORT; |
668 |
0
|
} else if (SQLExecutor.ON_ERROR_CONTINUE.equalsIgnoreCase(action)) { |
669 |
0
|
this.onError = SQLExecutor.ON_ERROR_CONTINUE; |
670 |
0
|
} else if (SQLExecutor.ON_ERROR_ABORT_AFTER.equalsIgnoreCase(action)) { |
671 |
0
|
this.onError = SQLExecutor.ON_ERROR_ABORT_AFTER; |
672 |
|
} else { |
673 |
0
|
throw new IllegalArgumentException(action + " is not a valid value for onError, only '" |
674 |
|
+ SQLExecutor.ON_ERROR_ABORT + "', '" + SQLExecutor.ON_ERROR_ABORT_AFTER + "', or '" |
675 |
|
+ SQLExecutor.ON_ERROR_CONTINUE + "'."); |
676 |
|
} |
677 |
|
} |
678 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
679 |
0
|
public void setSettingsKey(final String key) {... |
680 |
0
|
this.settingsKey = key; |
681 |
|
} |
682 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
683 |
0
|
public void setDriverProperties(final String driverProperties) {... |
684 |
0
|
this.driverProperties = driverProperties; |
685 |
|
} |
686 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
687 |
0
|
public String getSqlCommand() {... |
688 |
0
|
return sqlCommand; |
689 |
|
} |
690 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
691 |
0
|
public void setSqlCommand(final String sqlCommand) {... |
692 |
0
|
this.sqlCommand = sqlCommand; |
693 |
|
} |
694 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
695 |
0
|
public Vector<Transaction> getTransactions() {... |
696 |
0
|
return transactions; |
697 |
|
} |
698 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
699 |
0
|
public void setTransactions(final Vector<Transaction> transactions) {... |
700 |
0
|
this.transactions = transactions; |
701 |
|
} |
702 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
703 |
0
|
public void setFileFilter(final MavenFileFilter filter) {... |
704 |
0
|
this.fileFilter = filter; |
705 |
|
} |
706 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
707 |
0
|
public String getTargetDatabase() {... |
708 |
0
|
return targetDatabase; |
709 |
|
} |
710 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
711 |
0
|
public void setTargetDatabase(final String targetDatabase) {... |
712 |
0
|
this.targetDatabase = targetDatabase; |
713 |
|
} |
714 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
715 |
0
|
public Connection getConn() {... |
716 |
0
|
return conn; |
717 |
|
} |
718 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
719 |
0
|
public void setConn(final Connection conn) {... |
720 |
0
|
this.conn = conn; |
721 |
|
} |
722 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
723 |
0
|
public String getDelimiter() {... |
724 |
0
|
return delimiter; |
725 |
|
} |
726 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
727 |
0
|
public String getDelimiterType() {... |
728 |
0
|
return delimiterType; |
729 |
|
} |
730 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
731 |
0
|
public boolean isKeepFormat() {... |
732 |
0
|
return keepFormat; |
733 |
|
} |
734 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
735 |
0
|
public boolean isShowheaders() {... |
736 |
0
|
return showheaders; |
737 |
|
} |
738 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
739 |
0
|
public boolean isAppend() {... |
740 |
0
|
return append; |
741 |
|
} |
742 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
743 |
0
|
public boolean isEscapeProcessing() {... |
744 |
0
|
return escapeProcessing; |
745 |
|
} |
746 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
747 |
0
|
public boolean isSkipOnConnectionError() {... |
748 |
0
|
return skipOnConnectionError; |
749 |
|
} |
750 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
751 |
0
|
public void setSkipOnConnectionError(final boolean skipOnConnectionError) {... |
752 |
0
|
this.skipOnConnectionError = skipOnConnectionError; |
753 |
|
} |
754 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
755 |
0
|
public MavenFileFilter getFileFilter() {... |
756 |
0
|
return fileFilter; |
757 |
|
} |
758 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
759 |
0
|
public boolean isShowPassword() {... |
760 |
0
|
return showPassword; |
761 |
|
} |
762 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
763 |
0
|
public void setShowPassword(final boolean showPassword) {... |
764 |
0
|
this.showPassword = showPassword; |
765 |
|
} |
766 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
767 |
0
|
public boolean isEnableAnonymousPassword() {... |
768 |
0
|
return enableAnonymousPassword; |
769 |
|
} |
770 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
771 |
0
|
public void setEnableAnonymousPassword(final boolean enableAnonymousPassword) {... |
772 |
0
|
this.enableAnonymousPassword = enableAnonymousPassword; |
773 |
|
} |
774 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
775 |
0
|
public String getSettingsKey() {... |
776 |
0
|
return settingsKey; |
777 |
|
} |
778 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
779 |
0
|
public boolean isAutocommit() {... |
780 |
0
|
return autocommit; |
781 |
|
} |
782 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
783 |
0
|
public void setSuccessfulStatements(final int successfulStatements) {... |
784 |
0
|
this.successfulStatements = successfulStatements; |
785 |
|
} |
786 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
787 |
0
|
public void setTotalStatements(final int totalStatements) {... |
788 |
0
|
this.totalStatements = totalStatements; |
789 |
|
} |
790 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
791 |
0
|
public void setCredentials(final Credentials credentials) {... |
792 |
0
|
this.credentials = credentials; |
793 |
|
} |
794 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
795 |
0
|
public Credentials getCredentials() {... |
796 |
0
|
return credentials; |
797 |
|
} |
798 |
|
|
799 |
|
} |