View Javadoc

1   package org.kuali.ole.pojo;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: pvsubrah
6    * Date: 4/11/12
7    * Time: 2:50 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OleEditorResponse {
11      private OleBibRecord oleBibRecord;
12      private String tokenId;
13  
14      public OleBibRecord getOleBibRecord() {
15          return oleBibRecord;
16      }
17  
18      public void setOleBibRecord(OleBibRecord oleBibRecord) {
19          this.oleBibRecord = oleBibRecord;
20      }
21  
22      public String getTokenId() {
23          return tokenId;
24      }
25  
26      public void setTokenId(String tokenId) {
27          this.tokenId = tokenId;
28      }
29  }