| 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 Udf implements Serializable { | |
| 8 | ||
| 9 | private Archive archive = new Archive(); | |
| 10 | private Library library = new Library(); | |
| 11 | private Extension extension = new Extension(); | |
| 12 | private Program program = new Program(); | |
| 13 | private String plpython = StringUtils.EMPTY; | |
| 14 | private String plperl = StringUtils.EMPTY; | |
| 15 | private String plsh = StringUtils.EMPTY; | |
| 16 | private String pltcl = StringUtils.EMPTY; | |
| 17 | private String plr = StringUtils.EMPTY; | |
| 18 | private String pllua = StringUtils.EMPTY; | |
| 19 | private String runFunc = StringUtils.EMPTY; | |
| 20 | private String dropFunc = StringUtils.EMPTY; | |
| 21 | private Sql sql = new Sql(); | |
| 22 | ||
| 23 | public Extension getExtension() { | |
| 24 |
1
1. getExtension : replaced return value with null for com/jsql/model/accessible/vendor/postgres/Udf::getExtension → NO_COVERAGE |
return this.extension; |
| 25 | } | |
| 26 | ||
| 27 | public void setExtension(Extension extension) { | |
| 28 | this.extension = extension; | |
| 29 | } | |
| 30 | ||
| 31 | public String getPlpython() { | |
| 32 |
1
1. getPlpython : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getPlpython → NO_COVERAGE |
return this.plpython; |
| 33 | } | |
| 34 | ||
| 35 | public void setPlpython(String plpython) { | |
| 36 | this.plpython = plpython; | |
| 37 | } | |
| 38 | ||
| 39 | public String getPlperl() { | |
| 40 |
1
1. getPlperl : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getPlperl → NO_COVERAGE |
return this.plperl; |
| 41 | } | |
| 42 | ||
| 43 | public void setPlperl(String plperl) { | |
| 44 | this.plperl = plperl; | |
| 45 | } | |
| 46 | ||
| 47 | public String getPlsh() { | |
| 48 |
1
1. getPlsh : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getPlsh → NO_COVERAGE |
return this.plsh; |
| 49 | } | |
| 50 | ||
| 51 | public void setPlsh(String plsh) { | |
| 52 | this.plsh = plsh; | |
| 53 | } | |
| 54 | ||
| 55 | public String getRunFunc() { | |
| 56 |
1
1. getRunFunc : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getRunFunc → NO_COVERAGE |
return this.runFunc; |
| 57 | } | |
| 58 | ||
| 59 | public void setRunFunc(String runFunc) { | |
| 60 | this.runFunc = runFunc; | |
| 61 | } | |
| 62 | ||
| 63 | public Sql getSql() { | |
| 64 |
1
1. getSql : replaced return value with null for com/jsql/model/accessible/vendor/postgres/Udf::getSql → NO_COVERAGE |
return this.sql; |
| 65 | } | |
| 66 | ||
| 67 | public void setSql(Sql sql) { | |
| 68 | this.sql = sql; | |
| 69 | } | |
| 70 | ||
| 71 | public String getDropFunc() { | |
| 72 |
1
1. getDropFunc : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getDropFunc → NO_COVERAGE |
return this.dropFunc; |
| 73 | } | |
| 74 | ||
| 75 | public void setDropFunc(String dropFunc) { | |
| 76 | this.dropFunc = dropFunc; | |
| 77 | } | |
| 78 | ||
| 79 | public Archive getArchive() { | |
| 80 |
1
1. getArchive : replaced return value with null for com/jsql/model/accessible/vendor/postgres/Udf::getArchive → NO_COVERAGE |
return this.archive; |
| 81 | } | |
| 82 | ||
| 83 | public void setArchive(Archive archive) { | |
| 84 | this.archive = archive; | |
| 85 | } | |
| 86 | ||
| 87 | public Program getProgram() { | |
| 88 |
1
1. getProgram : replaced return value with null for com/jsql/model/accessible/vendor/postgres/Udf::getProgram → NO_COVERAGE |
return this.program; |
| 89 | } | |
| 90 | ||
| 91 | public void setProgram(Program program) { | |
| 92 | this.program = program; | |
| 93 | } | |
| 94 | ||
| 95 | public String getPltcl() { | |
| 96 |
1
1. getPltcl : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getPltcl → NO_COVERAGE |
return this.pltcl; |
| 97 | } | |
| 98 | ||
| 99 | public void setPltcl(String pltcl) { | |
| 100 | this.pltcl = pltcl; | |
| 101 | } | |
| 102 | ||
| 103 | public String getPlr() { | |
| 104 |
1
1. getPlr : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getPlr → NO_COVERAGE |
return this.plr; |
| 105 | } | |
| 106 | ||
| 107 | public void setPlr(String plr) { | |
| 108 | this.plr = plr; | |
| 109 | } | |
| 110 | ||
| 111 | public String getPllua() { | |
| 112 |
1
1. getPllua : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Udf::getPllua → NO_COVERAGE |
return this.pllua; |
| 113 | } | |
| 114 | ||
| 115 | public void setPllua(String pllua) { | |
| 116 | this.pllua = pllua; | |
| 117 | } | |
| 118 | ||
| 119 | public Library getLibrary() { | |
| 120 |
1
1. getLibrary : replaced return value with null for com/jsql/model/accessible/vendor/postgres/Udf::getLibrary → NO_COVERAGE |
return this.library; |
| 121 | } | |
| 122 | ||
| 123 | public void setLibrary(Library library) { | |
| 124 | this.library = library; | |
| 125 | } | |
| 126 | } | |
Mutations | ||
| 24 |
1.1 |
|
| 32 |
1.1 |
|
| 40 |
1.1 |
|
| 48 |
1.1 |
|
| 56 |
1.1 |
|
| 64 |
1.1 |
|
| 72 |
1.1 |
|
| 80 |
1.1 |
|
| 88 |
1.1 |
|
| 96 |
1.1 |
|
| 104 |
1.1 |
|
| 112 |
1.1 |
|
| 120 |
1.1 |