View Javadoc
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 Wal wal = new Wal();
10      private Extension extension = new Extension();
11      private Program program = new Program();
12      private String plpython = StringUtils.EMPTY;
13      private String plperl = StringUtils.EMPTY;
14      private String plsh = StringUtils.EMPTY;
15      private String pltcl = StringUtils.EMPTY;
16      private String plr = StringUtils.EMPTY;
17      private String pllua = StringUtils.EMPTY;
18      private String runFunc = StringUtils.EMPTY;
19      private String dropFunc = StringUtils.EMPTY;
20      private Sql sql = new Sql();
21  
22      public Extension getExtension() {
23          return this.extension;
24      }
25  
26      public void setExtension(Extension extension) {
27          this.extension = extension;
28      }
29  
30      public String getPlpython() {
31          return this.plpython;
32      }
33  
34      public void setPlpython(String plpython) {
35          this.plpython = plpython;
36      }
37  
38      public String getPlperl() {
39          return this.plperl;
40      }
41  
42      public void setPlperl(String plperl) {
43          this.plperl = plperl;
44      }
45  
46      public String getPlsh() {
47          return this.plsh;
48      }
49  
50      public void setPlsh(String plsh) {
51          this.plsh = plsh;
52      }
53  
54      public String getRunFunc() {
55          return this.runFunc;
56      }
57  
58      public void setRunFunc(String runFunc) {
59          this.runFunc = runFunc;
60      }
61  
62      public Sql getSql() {
63          return this.sql;
64      }
65  
66      public void setSql(Sql sql) {
67          this.sql = sql;
68      }
69  
70      public String getDropFunc() {
71          return this.dropFunc;
72      }
73  
74      public void setDropFunc(String dropFunc) {
75          this.dropFunc = dropFunc;
76      }
77  
78      public Wal getWal() {
79          return this.wal;
80      }
81  
82      public void setWal(Wal wal) {
83          this.wal = wal;
84      }
85  
86      public Program getProgram() {
87          return this.program;
88      }
89  
90      public void setProgram(Program program) {
91          this.program = program;
92      }
93  
94      public String getPltcl() {
95          return this.pltcl;
96      }
97  
98      public void setPltcl(String pltcl) {
99          this.pltcl = pltcl;
100     }
101 
102     public String getPlr() {
103         return this.plr;
104     }
105 
106     public void setPlr(String plr) {
107         this.plr = plr;
108     }
109 
110     public String getPllua() {
111         return this.pllua;
112     }
113 
114     public void setPllua(String pllua) {
115         this.pllua = pllua;
116     }
117 }