1 package org.kuali.ole.docstore.common.document.config;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.io.Serializable;
6
7
8
9
10
11
12
13
14 public class SearchFacetPage extends PersistableBusinessObjectBase
15 implements Serializable {
16 private Integer id;
17 private Integer shotSize;
18 private Integer longSize;
19
20
21 public Integer getId() {
22 return id;
23 }
24
25 public void setId(Integer id) {
26 this.id = id;
27 }
28
29 public Integer getShotSize() {
30 return shotSize;
31 }
32
33 public void setShotSize(Integer shotSize) {
34 this.shotSize = shotSize;
35 }
36
37 public Integer getLongSize() {
38 return longSize;
39 }
40
41 public void setLongSize(Integer longSize) {
42 this.longSize = longSize;
43 }
44 }