View Javadoc

1   package org.kuali.ole.describe.bo;
2   
3   import org.kuali.ole.docstore.model.bo.WorkBibDocument;
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 WorkBibDocument {
13  
14      private boolean select;
15      private String tokenId;
16      private String oleERSIdentifier;
17  
18      public String getTokenId() {
19          return tokenId;
20      }
21  
22      public void setTokenId(String tokenId) {
23          this.tokenId = tokenId;
24      }
25  
26      public String getOleERSIdentifier() {
27          return oleERSIdentifier;
28      }
29  
30      public void setOleERSIdentifier(String oleERSIdentifier) {
31          this.oleERSIdentifier = oleERSIdentifier;
32      }
33  
34      public boolean isSelect() {
35          return select;
36      }
37  
38      public void setSelect(boolean select) {
39          this.select = select;
40      }
41  }