Class SearchResponse
- java.lang.Object
-
- org.springframework.data.domain.PageImpl<Object>
-
- com.broadleafcommerce.search.api.domain.SearchResponse
-
- All Implemented Interfaces:
Serializable,Iterable<Object>,Supplier<Stream<Object>>,org.springframework.data.domain.Page<Object>,org.springframework.data.domain.Slice<Object>,org.springframework.data.util.Streamable<Object>
public class SearchResponse extends org.springframework.data.domain.PageImpl<Object>
Represents the results from a search.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchResponse(List<Object> content, org.springframework.data.domain.Pageable pageable, long total)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)List<T>getContent()protected <U extends Object>
List<U>getConvertedContent(Function<? super T,? extends U> arg0)List<FacetResponse>getFacets()The facets returned in the search result.intgetNumber()intgetNumberOfElements()org.springframework.data.domain.PageablegetPageable()SearchRedirectResponsegetRedirect()A redirect generated based on the original request query.intgetSize()org.springframework.data.domain.SortgetSort()List<SortResponse>getSorts()The sort options returned in the search result.SpellCheckResultgetSpellCheckResult()Set if spellcheck returned any results.booleanhasContent()inthashCode()booleanhasPrevious()booleanisCorrectedQuery()If no results were found and a different query was executed than the original, this is set to true.booleanisFirst()Iterator<T>iterator()org.springframework.data.domain.PageablenextPageable()org.springframework.data.domain.PageablepreviousPageable()voidsetCorrectedQuery(boolean correctedQuery)If no results were found and a different query was executed than the original, this is set to true.voidsetFacets(List<FacetResponse> facets)The facets returned in the search result.voidsetRedirect(SearchRedirectResponse redirect)A redirect generated based on the original request query.voidsetSorts(List<SortResponse> sorts)The sort options returned in the search result.voidsetSpellCheckResult(SpellCheckResult spellCheckResult)Set if spellcheck returned any results.StringtoString()-
Methods inherited from class org.springframework.data.domain.PageImpl
getTotalElements, getTotalPages, hasNext, isLast, map
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
getFacets
public List<FacetResponse> getFacets()
The facets returned in the search result.- Returns:
- facets returned in the search result
-
getSorts
public List<SortResponse> getSorts()
The sort options returned in the search result.- Returns:
- sort options returned in the search result
-
getRedirect
public SearchRedirectResponse getRedirect()
A redirect generated based on the original request query.If present, the rest of the response will be empty.
- Returns:
- redirect to perform in place of search results
-
isCorrectedQuery
public boolean isCorrectedQuery()
If no results were found and a different query was executed than the original, this is set to true.- Returns:
- whether this response is for a different corrected query
-
getSpellCheckResult
public SpellCheckResult getSpellCheckResult()
Set if spellcheck returned any results. Contains the original query and any potential suggestions.- Returns:
- spell check results and suggestions
-
setFacets
public void setFacets(List<FacetResponse> facets)
The facets returned in the search result.- Parameters:
facets- facets returned in the search result
-
setSorts
public void setSorts(List<SortResponse> sorts)
The sort options returned in the search result.- Parameters:
sorts- sort options returned in the search result
-
setRedirect
public void setRedirect(SearchRedirectResponse redirect)
A redirect generated based on the original request query.If present, the rest of the response will be empty.
- Parameters:
redirect- redirect to perform in place of search results
-
setCorrectedQuery
public void setCorrectedQuery(boolean correctedQuery)
If no results were found and a different query was executed than the original, this is set to true.- Parameters:
correctedQuery- whether this response is for a different corrected query
-
setSpellCheckResult
public void setSpellCheckResult(SpellCheckResult spellCheckResult)
Set if spellcheck returned any results. Contains the original query and any potential suggestions.- Parameters:
spellCheckResult- spell check results and suggestions
-
toString
public String toString()
- Overrides:
toStringin classorg.springframework.data.domain.PageImpl<Object>
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classorg.springframework.data.domain.PageImpl<Object>
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classorg.springframework.data.domain.PageImpl<Object>
-
getNumber
public int getNumber()
- Specified by:
getNumberin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getSize
public int getSize()
- Specified by:
getSizein interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getNumberOfElements
public int getNumberOfElements()
- Specified by:
getNumberOfElementsin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
isFirst
public boolean isFirst()
- Specified by:
isFirstin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
nextPageable
public org.springframework.data.domain.Pageable nextPageable()
- Specified by:
nextPageablein interfaceorg.springframework.data.domain.Slice<T extends Object>
-
previousPageable
public org.springframework.data.domain.Pageable previousPageable()
- Specified by:
previousPageablein interfaceorg.springframework.data.domain.Slice<T extends Object>
-
hasContent
public boolean hasContent()
- Specified by:
hasContentin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getContent
public List<T> getContent()
- Specified by:
getContentin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getPageable
public org.springframework.data.domain.Pageable getPageable()
- Specified by:
getPageablein interfaceorg.springframework.data.domain.Slice<T extends Object>
-
getSort
public org.springframework.data.domain.Sort getSort()
- Specified by:
getSortin interfaceorg.springframework.data.domain.Slice<T extends Object>
-
iterator
public Iterator<T> iterator()
-
-