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 Library implements Serializable {
8
9 private String loFromText = StringUtils.EMPTY;
10 private String loToFile = StringUtils.EMPTY;
11 private String dropFunc = StringUtils.EMPTY;
12 private String createFunction = StringUtils.EMPTY;
13 private String runFunc = StringUtils.EMPTY;
14
15 public String getDropFunc() {
16 return this.dropFunc;
17 }
18
19 public void setDropFunc(String dropFunc) {
20 this.dropFunc = dropFunc;
21 }
22
23 public String getCreateFunction() {
24 return this.createFunction;
25 }
26
27 public void setCreateFunction(String createFunction) {
28 this.createFunction = createFunction;
29 }
30
31 public String getRunFunc() {
32 return this.runFunc;
33 }
34
35 public void setRunFunc(String runFunc) {
36 this.runFunc = runFunc;
37 }
38
39 public String getLoFromText() {
40 return this.loFromText;
41 }
42
43 public void setLoFromText(String loFromText) {
44 this.loFromText = loFromText;
45 }
46
47 public String getLoToFile() {
48 return this.loToFile;
49 }
50
51 public void setLoToFile(String loToFile) {
52 this.loToFile = loToFile;
53 }
54 }