View Javadoc

1   package org.kuali.ole.pojo;
2   
3   import java.util.HashMap;
4   import java.util.Map;
5   
6   /**
7    * Created by IntelliJ IDEA.
8    * User: pvsubrah
9    * Date: 4/7/12
10   * Time: 11:44 AM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class OleBibRecord {
14      //TODO: No need for this unless this map is populated witht the SOlr Query resonse object.
15      //TODO: essentially a map of all the indexed fields and its values
16      private Map<String, ?> bibAssociatedFieldsValueMap = new HashMap();
17      private String bibUUID;
18      private String linkedInstanceId;
19  
20      public String getBibUUID() {
21          return bibUUID;
22      }
23  
24      public void setBibUUID(String bibUUID) {
25          this.bibUUID = bibUUID;
26      }
27  
28      public String getLinkedInstanceId() {
29          return linkedInstanceId;
30      }
31  
32      public void setLinkedInstanceId(String linkedInstanceId) {
33          this.linkedInstanceId = linkedInstanceId;
34      }
35  
36      public Map<String, ?> getBibAssociatedFieldsValueMap() {
37          return bibAssociatedFieldsValueMap;
38      }
39  
40      public void setBibAssociatedFieldsValueMap(Map<String, ?> bibAssociatedFieldsValueMap) {
41          this.bibAssociatedFieldsValueMap = bibAssociatedFieldsValueMap;
42      }
43  
44      @Override
45      public String toString() {
46          return "OleBibRecord{" +
47                  "bibAssociatedFieldsValueMap=" + bibAssociatedFieldsValueMap +
48                  ", bibUUID='" + bibUUID + '\'' +
49                  ", linkedInstanceId='" + linkedInstanceId + '\'' +
50                  '}';
51      }
52  }