001package org.kuali.ole.docstore.common.document.config;
002
003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004
005import java.io.Serializable;
006
007/**
008 * Created with IntelliJ IDEA.
009 * User: chandrasekharag
010 * Date: 4/3/14
011 * Time: 6:09 PM
012 * To change this template use File | Settings | File Templates.
013 */
014public class SearchFacetPage extends PersistableBusinessObjectBase
015        implements Serializable {
016    private Integer id;
017    private Integer shotSize;
018    private Integer longSize;
019
020
021    public Integer getId() {
022        return id;
023    }
024
025    public void setId(Integer id) {
026        this.id = id;
027    }
028
029    public Integer getShotSize() {
030        return shotSize;
031    }
032
033    public void setShotSize(Integer shotSize) {
034        this.shotSize = shotSize;
035    }
036
037    public Integer getLongSize() {
038        return longSize;
039    }
040
041    public void setLongSize(Integer longSize) {
042        this.longSize = longSize;
043    }
044}