Interface SearchProvider
-
- All Known Subinterfaces:
HistoryAwareSearchProvider
- All Known Implementing Classes:
AbstractSearchProvider
,AlarmSearchProvider
,BusinessServiceSearchProvider
,CategorySearchProvider
,GraphMLSearchProvider
,IpLikeSearchProvider
,LegacyApplicationSearchProvider
,LegacyTopologySearchProvider
,LinkdSearchProvider
,PathOutageSearchProvider
,SimpleSearchProvider
,VmwareTopologySearchProvider
public interface SearchProvider
- Author:
- Donald Desloge
API for Topology map search engine (Providers)
NOTE: The implementations of this API will only ever receive
objects that were created by the implementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addVertexHopCriteria(SearchResult searchResult, GraphContainer container)
This method is called when the selection is made from the list ofreturned by a query() method of this API. boolean
contributesTo(String namespace)
This is the topology provider namespace to which this search provider contributes.String
getSearchProviderNamespace()
This is a namespace for search providers...Set<VertexRef>
getVertexRefsBy(SearchResult searchResult, GraphContainer graphContainer)
This method is called when the topology UI needs to know whatare associated with a particular . void
onCenterSearchResult(SearchResult searchResult, GraphContainer graphContainer)
This method called when the user clicks the focus icon on the. void
onDefocusSearchResult(SearchResult searchResult, OperationContext operationContext)
This method is called from the UI when the user wants to remove a vertex that currently in the focus list.void
onFocusSearchResult(SearchResult searchResult, OperationContext operationContext)
This method is called from the UI when the user wants to add a vertex that is in the current context to the focus list.void
onToggleCollapse(SearchResult searchResult, GraphContainer graphContainer)
This method is called if theprovided by the implementation of this API is flagged as collapsible and the user has clicked the toggle icon. List<SearchResult>
query(SearchQuery searchQuery, GraphContainer graphContainer)
This API is for getting a list offrom all the search providers. void
removeVertexHopCriteria(SearchResult searchResult, GraphContainer container)
When the user requests that the current SearchResult be removed from focus, the search provider should remove thefrom the boolean
supportsPrefix(String searchPrefix)
This method is called by topology app the user is searching to setup prefixes that will only match from a
-
-
-
Method Detail
-
getSearchProviderNamespace
String getSearchProviderNamespace()
This is a namespace for search providers...- Returns:
-
contributesTo
boolean contributesTo(String namespace)
This is the topology provider namespace to which this search provider contributes.- Parameters:
namespace
-- Returns:
- returns true if the provider support the <@param namespace>.
-
query
List<SearchResult> query(SearchQuery searchQuery, GraphContainer graphContainer)
This API is for getting a list offrom all the search providers. - Parameters:
searchQuery
- This is an API for Vaadin UI code for implementing various search queries types.graphContainer
-- Returns:
- A list of SearchResults
-
onFocusSearchResult
void onFocusSearchResult(SearchResult searchResult, OperationContext operationContext)
This method is called from the UI when the user wants to add a vertex that is in the current context to the focus list.- Parameters:
searchResult
-operationContext
-
-
onDefocusSearchResult
void onDefocusSearchResult(SearchResult searchResult, OperationContext operationContext)
This method is called from the UI when the user wants to remove a vertex that currently in the focus list.- Parameters:
searchResult
-operationContext
-
-
supportsPrefix
boolean supportsPrefix(String searchPrefix)
This method is called by topology app the user is searching to setup prefixes that will only match from a- Parameters:
searchPrefix
-- Returns:
-
getVertexRefsBy
Set<VertexRef> getVertexRefsBy(SearchResult searchResult, GraphContainer graphContainer)
This method is called when the topology UI needs to know whatare associated with a particular . - Parameters:
searchResult
-graphContainer
-- Returns:
-
addVertexHopCriteria
void addVertexHopCriteria(SearchResult searchResult, GraphContainer container)
This method is called when the selection is made from the list ofreturned by a query() method of this API. It is the criteria's responsibility is to determine the associated with the passed to the reference passed to this method. - Parameters:
searchResult
-container
-
-
removeVertexHopCriteria
void removeVertexHopCriteria(SearchResult searchResult, GraphContainer container)
When the user requests that the current SearchResult be removed from focus, the search provider should remove thefrom the - Parameters:
searchResult
-container
-
-
onCenterSearchResult
void onCenterSearchResult(SearchResult searchResult, GraphContainer graphContainer)
This method called when the user clicks the focus icon on the. No implementation is required unless you want to enhance the zoom behavior. This call will be followed by a call to getVertexRefsBy. - Parameters:
searchResult
-graphContainer
-
-
onToggleCollapse
void onToggleCollapse(SearchResult searchResult, GraphContainer graphContainer)
This method is called if theprovided by the implementation of this API is flagged as collapsible and the user has clicked the toggle icon. This requires that the implementation created by the implemenation of this API should be able to implement the API. The set of provided by the Criteria will not change, however, the criteria should be able to provide the both the collapsed and uncollapsed representations of the SearchResult. - Parameters:
searchResult
-graphContainer
-
-
-