View Javadoc
1   package org.kuali.ole.docstore.common.search;
2   
3   import org.apache.log4j.Logger;
4   
5   import java.io.ByteArrayInputStream;
6   import java.io.StringWriter;
7   import java.util.ArrayList;
8   import java.util.List;
9   import javax.xml.bind.JAXBContext;
10  import javax.xml.bind.JAXBElement;
11  import javax.xml.bind.Marshaller;
12  import javax.xml.bind.Unmarshaller;
13  import javax.xml.bind.annotation.*;
14  import javax.xml.transform.stream.StreamSource;
15  
16  
17  /**
18   * <p>Java class for searchResponse complex type.
19   *
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   *
22   * <pre>
23   * &lt;complexType name="searchResponse">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;sequence>
27   *         &lt;element name="endIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
28   *         &lt;element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
29   *         &lt;element name="searchResults" type="{}searchResult" maxOccurs="unbounded" minOccurs="0"/>
30   *         &lt;element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
31   *         &lt;element name="totalRecordCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
32   *       &lt;/sequence>
33   *     &lt;/restriction>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   *
38   *
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "searchResponse", propOrder = {
42          "endIndex",
43          "pageSize",
44          "searchResults",
45          "startIndex",
46          "totalRecordCount",
47          "facetResult",
48          "time"
49  })
50  @XmlRootElement
51  public class SearchResponse {
52  
53      private static final Logger LOG = Logger.getLogger(SearchResponse.class);
54      protected int endIndex;
55      protected int pageSize;
56  
57      @XmlElementWrapper(name = "searchResults")
58      @XmlElement(name = "searchResult")
59      protected List<SearchResult> searchResults;
60      protected int startIndex;
61      protected int totalRecordCount;
62      protected FacetResult facetResult;
63  
64      protected int time;
65  
66      public FacetResult getFacetResult() {
67          return facetResult;
68      }
69  
70      public void setFacetResult(FacetResult facetResult) {
71          this.facetResult = facetResult;
72      }
73  
74      /**
75       * Gets the value of the endIndex property.
76       *
77       */
78      public int getEndIndex() {
79          return endIndex;
80      }
81  
82      /**
83       * Sets the value of the endIndex property.
84       *
85       */
86      public void setEndIndex(int value) {
87          this.endIndex = value;
88      }
89  
90      /**
91       * Gets the value of the pageSize property.
92       *
93       */
94      public int getPageSize() {
95          return pageSize;
96      }
97  
98      /**
99       * Sets the value of the pageSize property.
100      *
101      */
102     public void setPageSize(int value) {
103         this.pageSize = value;
104     }
105 
106     /**
107      * Gets the value of the searchResults property.
108      *
109      * <p>
110      * This accessor method returns a reference to the live list,
111      * not a snapshot. Therefore any modification you make to the
112      * returned list will be present inside the JAXB object.
113      * This is why there is not a <CODE>set</CODE> method for the searchResults property.
114      *
115      * <p>
116      * For example, to add a new item, do as follows:
117      * <pre>
118      *    getSearchResults().add(newItem);
119      * </pre>
120      *
121      *
122      * <p>
123      * Objects of the following type(s) are allowed in the list
124      * {@link SearchResult }
125      *
126      *
127      */
128     public List<SearchResult> getSearchResults() {
129         if (searchResults == null) {
130             searchResults = new ArrayList<SearchResult>();
131         }
132         return this.searchResults;
133     }
134 
135     /**
136      * Gets the value of the startIndex property.
137      *
138      */
139     public int getStartIndex() {
140         return startIndex;
141     }
142 
143     /**
144      * Sets the value of the startIndex property.
145      *
146      */
147     public void setStartIndex(int value) {
148         this.startIndex = value;
149     }
150 
151     /**
152      * Gets the value of the totalRecordCount property.
153      *
154      */
155     public int getTotalRecordCount() {
156         return totalRecordCount;
157     }
158 
159     /**
160      * Sets the value of the totalRecordCount property.
161      *
162      */
163     public void setTotalRecordCount(int value) {
164         this.totalRecordCount = value;
165     }
166 
167     public int getTime() {
168         return time;
169     }
170 
171     public void setTime(int time) {
172         this.time = time;
173     }
174 
175     public String serialize(Object object) {
176         String result = null;
177         StringWriter sw = new StringWriter();
178         SearchResponse searchResponse = (SearchResponse) object;
179         try {
180             JAXBContext jaxbContext = JAXBContext.newInstance(SearchResponse.class);
181             Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
182             jaxbMarshaller.marshal(searchResponse, sw);
183             result = sw.toString();
184         } catch (Exception e) {
185             LOG.error("Exception ", e);
186         }
187         return result;
188     }
189 
190 
191     public Object deserialize(String content) {
192 
193         JAXBElement<SearchResponse> SearchResponseElement = null;
194         try {
195             JAXBContext jaxbContext = JAXBContext.newInstance(SearchResponse.class);
196             Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
197             ByteArrayInputStream input = new ByteArrayInputStream(content.getBytes("UTF-8"));
198             SearchResponseElement = jaxbUnmarshaller.unmarshal(new StreamSource(input),SearchResponse.class);
199         } catch (Exception e) {
200             LOG.error("Exception ", e);
201         }
202         return SearchResponseElement.getValue();
203     }
204 }