View Javadoc

1   package org.kuali.ole.editor.service;
2   
3   import org.kuali.incubator.SolrRequestReponseHandler;
4   
5   import java.util.List;
6   
7   /**
8    * DiscoveryHelperService is the service class to access Discovery services
9    */
10  public class DiscoveryHelperService {
11      private final String queryString = "DocType:bibliographic AND instanceIdentifier:";
12      private final String bibQueryString = "DocType:bibliographic AND uniqueId:";
13      SolrRequestReponseHandler solrRequestReponseHandler;
14  
15      /**
16       *  Returns the Response List based on the queryField and Value from the SolrRequestReponseHandler class.
17       * @param queryField
18       * @param value
19       * @return  Returns the Response.
20       */
21      public List getResponseFromSOLR(String queryField, String value) {
22          String queryString = queryField + ":" + value;
23          return getSolrRequestReponseHandler().retriveResults(queryString);
24      }
25  
26      /**
27       *   Returns the List of BibInformation records based on the instanceUUID.
28       * @param instanceUUID
29       * @return  Returns BibInformation
30       */
31      public List getBibInformationFromInsatnceId(String instanceUUID) {
32          return getSolrRequestReponseHandler().retriveResults(queryString + instanceUUID);
33      }
34  
35      /**
36       *   Returns the List of BibInformation records based on the BibUUID.
37       * @param bibUUID
38       * @return  Returns BibInformation
39       */
40      public List getBibInformationFromBibId(String bibUUID) {
41          return getSolrRequestReponseHandler().retriveResults(bibQueryString + bibUUID);
42      }
43  
44  
45      /**
46       *  Returns the new instance of SolrRequestReponseHandler provided there should not be any existing instance,Otherwise returns existing instance.
47       * @return   Returns the SolrRequestReponseHandler
48       */
49      public SolrRequestReponseHandler getSolrRequestReponseHandler() {
50          if (null == solrRequestReponseHandler) {
51              solrRequestReponseHandler = new SolrRequestReponseHandler();
52          }
53          return solrRequestReponseHandler;
54      }
55  
56      /**
57       * Sets the SolrRequestReponseHandler attribute value.
58       * @param solrRequestReponseHandler
59       */
60      public void setSolrRequestReponseHandler(SolrRequestReponseHandler solrRequestReponseHandler) {
61          this.solrRequestReponseHandler = solrRequestReponseHandler;
62      }
63  }