1 package org.hibernate.engine; 3 4 8 public final class RowSelection { 9 private Integer firstRow; 10 private Integer maxRows; 11 private Integer timeout; 12 private Integer fetchSize; 13 14 public void setFirstRow(Integer firstRow) { 15 this.firstRow = firstRow; 16 } 17 18 public Integer getFirstRow() { 19 return firstRow; 20 } 21 22 public void setMaxRows(Integer maxRows) { 23 this.maxRows = maxRows; 24 } 25 26 public Integer getMaxRows() { 27 return maxRows; 28 } 29 30 public void setTimeout(Integer timeout) { 31 this.timeout = timeout; 32 } 33 34 public Integer getTimeout() { 35 return timeout; 36 } 37 38 public Integer getFetchSize() { 39 return fetchSize; 40 } 41 42 public void setFetchSize(Integer fetchSize) { 43 this.fetchSize = fetchSize; 44 } 45 46 } 47 48 49 50 51 52 | Popular Tags |