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 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          return this.extension;
25      }
26  
27      public void setExtension(Extension extension) {
28          this.extension = extension;
29      }
30  
31      public String getPlpython() {
32          return this.plpython;
33      }
34  
35      public void setPlpython(String plpython) {
36          this.plpython = plpython;
37      }
38  
39      public String getPlperl() {
40          return this.plperl;
41      }
42  
43      public void setPlperl(String plperl) {
44          this.plperl = plperl;
45      }
46  
47      public String getPlsh() {
48          return this.plsh;
49      }
50  
51      public void setPlsh(String plsh) {
52          this.plsh = plsh;
53      }
54  
55      public String getRunFunc() {
56          return this.runFunc;
57      }
58  
59      public void setRunFunc(String runFunc) {
60          this.runFunc = runFunc;
61      }
62  
63      public Sql getSql() {
64          return this.sql;
65      }
66  
67      public void setSql(Sql sql) {
68          this.sql = sql;
69      }
70  
71      public String getDropFunc() {
72          return this.dropFunc;
73      }
74  
75      public void setDropFunc(String dropFunc) {
76          this.dropFunc = dropFunc;
77      }
78  
79      public Archive getArchive() {
80          return this.archive;
81      }
82  
83      public void setArchive(Archive archive) {
84          this.archive = archive;
85      }
86  
87      public Program getProgram() {
88          return this.program;
89      }
90  
91      public void setProgram(Program program) {
92          this.program = program;
93      }
94  
95      public String getPltcl() {
96          return this.pltcl;
97      }
98  
99      public void setPltcl(String pltcl) {
100         this.pltcl = pltcl;
101     }
102 
103     public String getPlr() {
104         return this.plr;
105     }
106 
107     public void setPlr(String plr) {
108         this.plr = plr;
109     }
110 
111     public String getPllua() {
112         return this.pllua;
113     }
114 
115     public void setPllua(String pllua) {
116         this.pllua = pllua;
117     }
118 
119     public Library getLibrary() {
120         return this.library;
121     }
122 
123     public void setLibrary(Library library) {
124         this.library = library;
125     }
126 }