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 LargeObject implements Serializable {
8
9 private String fromPath = StringUtils.EMPTY;
10 private String toText = StringUtils.EMPTY;
11 private String fromText = StringUtils.EMPTY;
12 private String toFile = StringUtils.EMPTY;
13
14 public String getFromPath() {
15 return this.fromPath;
16 }
17
18 public void setFromPath(String fromPath) {
19 this.fromPath = fromPath;
20 }
21
22 public String getToText() {
23 return this.toText;
24 }
25
26 public void setToText(String toText) {
27 this.toText = toText;
28 }
29
30 public String getFromText() {
31 return this.fromText;
32 }
33
34 public void setFromText(String fromText) {
35 this.fromText = fromText;
36 }
37
38 public String getToFile() {
39 return this.toFile;
40 }
41
42 public void setToFile(String toFile) {
43 this.toFile = toFile;
44 }
45 }