1 package org.kuali.ole.describe.bo;
2
3 import org.kuali.ole.docstore.model.bo.WorkHoldingsDocument;
4
5 import java.util.List;
6
7 /**
8 * Created with IntelliJ IDEA.
9 * User: divyaj
10 * Date: 8/1/13
11 * Time: 9:21 PM
12 * To change this template use File | Settings | File Templates.
13 */
14 public class OleWorkHoldingsDocument extends WorkHoldingsDocument {
15
16 private boolean select;
17
18 public boolean isSelect() {
19 return select;
20 }
21
22 public void setSelect(boolean select) {
23 this.select = select;
24 }
25
26
27 }