Interface SearchParameters
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BasicSearchParameters
public interface SearchParameters extends java.io.Serializable
A search request that is to be sent to a gateway search provider.- Since:
- 8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,Filter<?>>
getSearchFilters()
The names of the search providers that should process the search request.java.lang.String
getSearchPredicate()
This is ultimately the String that you are attempting to find via the Search/Replace dialog.boolean
searchImmutableItems()
Set to True to return immutable items in the search results
-
-
-
Method Detail
-
searchImmutableItems
boolean searchImmutableItems()
Set to True to return immutable items in the search results
-
getSearchPredicate
java.lang.String getSearchPredicate()
This is ultimately the String that you are attempting to find via the Search/Replace dialog. The Filter should be able to help to significantly cut down on the list, but each item must be text searched so that it can be returned as a SearchResult
-
getSearchFilters
java.util.Map<java.lang.String,Filter<?>> getSearchFilters()
The names of the search providers that should process the search request. Each search provider must supply a Filter object, configured to search for items that the search provider knows how to locate.
-
-