1 | package com.jsql.model.accessible.vendor.mysql; | |
2 | ||
3 | import org.apache.commons.lang3.StringUtils; | |
4 | ||
5 | import java.io.Serializable; | |
6 | ||
7 | public class Udf implements Serializable { | |
8 | ||
9 | private String pathPlugin = StringUtils.EMPTY; | |
10 | private String osMachine = StringUtils.EMPTY; | |
11 | private AddFile addFile = new AddFile(); | |
12 | private AddFunction addFunction = new AddFunction(); | |
13 | private String runCmd = StringUtils.EMPTY; | |
14 | ||
15 | public String getPathPlugin() { | |
16 |
1
1. getPathPlugin : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/Udf::getPathPlugin → NO_COVERAGE |
return this.pathPlugin; |
17 | } | |
18 | ||
19 | public void setPathPlugin(String pathPlugin) { | |
20 | this.pathPlugin = pathPlugin; | |
21 | } | |
22 | ||
23 | public String getOsMachine() { | |
24 |
1
1. getOsMachine : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/Udf::getOsMachine → NO_COVERAGE |
return this.osMachine; |
25 | } | |
26 | ||
27 | public void setOsMachine(String osMachine) { | |
28 | this.osMachine = osMachine; | |
29 | } | |
30 | ||
31 | public AddFile getAddFile() { | |
32 |
1
1. getAddFile : replaced return value with null for com/jsql/model/accessible/vendor/mysql/Udf::getAddFile → NO_COVERAGE |
return this.addFile; |
33 | } | |
34 | ||
35 | public void setAddFile(AddFile addFile) { | |
36 | this.addFile = addFile; | |
37 | } | |
38 | ||
39 | public AddFunction getAddFunction() { | |
40 |
1
1. getAddFunction : replaced return value with null for com/jsql/model/accessible/vendor/mysql/Udf::getAddFunction → NO_COVERAGE |
return this.addFunction; |
41 | } | |
42 | ||
43 | public void setAddFunction(AddFunction addFunction) { | |
44 | this.addFunction = addFunction; | |
45 | } | |
46 | ||
47 | public String getRunCmd() { | |
48 |
1
1. getRunCmd : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/Udf::getRunCmd → NO_COVERAGE |
return this.runCmd; |
49 | } | |
50 | ||
51 | public void setRunCmd(String runCmd) { | |
52 | this.runCmd = runCmd; | |
53 | } | |
54 | } | |
Mutations | ||
16 |
1.1 |
|
24 |
1.1 |
|
32 |
1.1 |
|
40 |
1.1 |
|
48 |
1.1 |