View Javadoc
1   package com.jsql.model.accessible.engine.sqlserver;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   public class File {
6   
7       private String read = StringUtils.EMPTY;
8   
9       public String getRead() {
10          return this.read;
11      }
12  
13      public void setRead(String read) {
14          this.read = read;
15      }
16  }