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 Confirm implements Serializable { 8 9 private String addFunc = StringUtils.EMPTY; 10 private String funcExists = StringUtils.EMPTY; 11 12 public String getAddFunc() { 13 return this.addFunc; 14 } 15 16 public void setAddFunc(String addFunc) { 17 this.addFunc = addFunc; 18 } 19 20 public String getFuncExists() { 21 return this.funcExists; 22 } 23 24 public void setFuncExists(String funcExists) { 25 this.funcExists = funcExists; 26 } 27 }