1 | package com.jsql.model.accessible.vendor.postgres; | |
2 | ||
3 | import org.apache.commons.lang3.StringUtils; | |
4 | ||
5 | import java.io.Serializable; | |
6 | ||
7 | public class Sql implements Serializable { | |
8 | ||
9 | private String dropTable = StringUtils.EMPTY; | |
10 | private String createTable = StringUtils.EMPTY; | |
11 | private Confirm confirm = new Confirm(); | |
12 | private String resultCmd = StringUtils.EMPTY; | |
13 | private String runCmd = StringUtils.EMPTY; | |
14 | private String clean = StringUtils.EMPTY; | |
15 | private String runFunc = StringUtils.EMPTY; | |
16 | ||
17 | public String getDropTable() { | |
18 |
1
1. getDropTable : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Sql::getDropTable → NO_COVERAGE |
return this.dropTable; |
19 | } | |
20 | ||
21 | public void setDropTable(String dropTable) { | |
22 | this.dropTable = dropTable; | |
23 | } | |
24 | ||
25 | public String getCreateTable() { | |
26 |
1
1. getCreateTable : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Sql::getCreateTable → NO_COVERAGE |
return this.createTable; |
27 | } | |
28 | ||
29 | public void setCreateTable(String createTable) { | |
30 | this.createTable = createTable; | |
31 | } | |
32 | ||
33 | public Confirm getConfirm() { | |
34 |
1
1. getConfirm : replaced return value with null for com/jsql/model/accessible/vendor/postgres/Sql::getConfirm → NO_COVERAGE |
return this.confirm; |
35 | } | |
36 | ||
37 | public void setConfirm(Confirm confirm) { | |
38 | this.confirm = confirm; | |
39 | } | |
40 | ||
41 | public String getResultCmd() { | |
42 |
1
1. getResultCmd : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Sql::getResultCmd → NO_COVERAGE |
return this.resultCmd; |
43 | } | |
44 | ||
45 | public void setResultCmd(String resultCmd) { | |
46 | this.resultCmd = resultCmd; | |
47 | } | |
48 | ||
49 | public String getRunCmd() { | |
50 |
1
1. getRunCmd : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Sql::getRunCmd → NO_COVERAGE |
return this.runCmd; |
51 | } | |
52 | ||
53 | public void setRunCmd(String runCmd) { | |
54 | this.runCmd = runCmd; | |
55 | } | |
56 | ||
57 | public String getClean() { | |
58 |
1
1. getClean : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Sql::getClean → NO_COVERAGE |
return this.clean; |
59 | } | |
60 | ||
61 | public void setClean(String clean) { | |
62 | this.clean = clean; | |
63 | } | |
64 | ||
65 | public String getRunFunc() { | |
66 |
1
1. getRunFunc : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Sql::getRunFunc → NO_COVERAGE |
return this.runFunc; |
67 | } | |
68 | ||
69 | public void setRunFunc(String runFunc) { | |
70 | this.runFunc = runFunc; | |
71 | } | |
72 | } | |
Mutations | ||
18 |
1.1 |
|
26 |
1.1 |
|
34 |
1.1 |
|
42 |
1.1 |
|
50 |
1.1 |
|
58 |
1.1 |
|
66 |
1.1 |