View Javadoc
1   package org.kuali.ole.describe.bo;
2   
3   import org.kuali.ole.docstore.common.document.BibMarc;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: PP7788
8    * Date: 12/6/12
9    * Time: 12:37 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OleWorkBibDocument extends BibMarc {
13  
14      private boolean select;
15      private String tokenId;
16      private String oleERSIdentifier;
17      private String staffOnly;
18      private String docFormat;
19  
20      public String getDocFormat() {
21          return docFormat;
22      }
23  
24      public void setDocFormat(String docFormat) {
25          this.docFormat = docFormat;
26      }
27  
28  
29      public String getStaffOnly() {
30          return staffOnly;
31      }
32  
33      public void setStaffOnly(String staffOnly) {
34          this.staffOnly = staffOnly;
35      }
36  
37      public String getTokenId() {
38          return tokenId;
39      }
40  
41      public void setTokenId(String tokenId) {
42          this.tokenId = tokenId;
43      }
44  
45      public String getOleERSIdentifier() {
46          return oleERSIdentifier;
47      }
48  
49      public void setOleERSIdentifier(String oleERSIdentifier) {
50          this.oleERSIdentifier = oleERSIdentifier;
51      }
52  
53      public boolean isSelect() {
54          return select;
55      }
56  
57      public void setSelect(boolean select) {
58          this.select = select;
59      }
60  }