1
2 package com.jsql.model.accessible.vendor.oracle;
3
4 import org.apache.commons.lang3.StringUtils;
5
6 import java.io.Serializable;
7
8 public class Udf implements Serializable {
9
10 private String dropSource = StringUtils.EMPTY;
11 private String dropFunc = StringUtils.EMPTY;
12 private String addSource = StringUtils.EMPTY;
13 private String addFunc = StringUtils.EMPTY;
14 private String grant = StringUtils.EMPTY;
15 private String confirm = StringUtils.EMPTY;
16 private String runCmd = StringUtils.EMPTY;
17
18 public String getDropSource() {
19 return this.dropSource;
20 }
21
22 public void setDropSource(String dropSource) {
23 this.dropSource = dropSource;
24 }
25
26 public String getDropFunc() {
27 return this.dropFunc;
28 }
29
30 public void setDropFunc(String dropFunc) {
31 this.dropFunc = dropFunc;
32 }
33
34 public String getAddSource() {
35 return this.addSource;
36 }
37
38 public void setAddSource(String addSource) {
39 this.addSource = addSource;
40 }
41
42 public String getAddFunc() {
43 return this.addFunc;
44 }
45
46 public void setAddFunc(String addFunc) {
47 this.addFunc = addFunc;
48 }
49
50 public String getGrant() {
51 return this.grant;
52 }
53
54 public void setGrant(String grant) {
55 this.grant = grant;
56 }
57
58 public String getConfirm() {
59 return this.confirm;
60 }
61
62 public void setConfirm(String confirm) {
63 this.confirm = confirm;
64 }
65
66 public String getRunCmd() {
67 return this.runCmd;
68 }
69
70 public void setRunCmd(String runCmd) {
71 this.runCmd = runCmd;
72 }
73 }