1 package com.jsql.model.accessible.vendor.mysql; 2 3 import org.apache.commons.lang3.StringUtils; 4 5 import java.io.Serializable; 6 7 public class File implements Serializable { 8 9 private String privilege = StringUtils.EMPTY; 10 private String read = StringUtils.EMPTY; 11 12 public String getPrivilege() { 13 return this.privilege; 14 } 15 16 public void setPrivilege(String privilege) { 17 this.privilege = privilege; 18 } 19 20 public String getRead() { 21 return this.read; 22 } 23 24 public void setRead(String read) { 25 this.read = read; 26 } 27 }