Class LegacyApplicationSearchProvider

  • All Implemented Interfaces:
    SearchProvider

    public class LegacyApplicationSearchProvider
    extends AbstractSearchProvider
    implements SearchProvider
    We call here the new search implementation and use it in the legacy world. This class will disappear eventually and the new search will be used directly.
    • Constructor Detail

      • LegacyApplicationSearchProvider

        public LegacyApplicationSearchProvider()
    • Method Detail

      • contributesTo

        public boolean contributesTo​(java.lang.String namespace)
        Description copied from interface: SearchProvider
        This is the topology provider namespace to which this search provider contributes.
        Specified by:
        contributesTo in interface SearchProvider
        Returns:
        returns true if the provider support the <@param namespace>.
      • supportsPrefix

        public boolean supportsPrefix​(java.lang.String searchPrefix)
        Description copied from interface: SearchProvider
        This method is called by topology app the user is searching to setup prefixes that will only match from a
        Specified by:
        supportsPrefix in interface SearchProvider
        Returns:
      • query

        public java.util.List<SearchResult> query​(SearchQuery searchQuery,
                                                  GraphContainer container)
        Description copied from interface: SearchProvider
        This API is for getting a list of from all the search providers.
        Specified by:
        query in interface SearchProvider
        Parameters:
        searchQuery - This is an API for Vaadin UI code for implementing various search queries types.
        Returns:
        A list of SearchResults
      • addVertexHopCriteria

        public void addVertexHopCriteria​(SearchResult searchResult,
                                         GraphContainer container)
        Description copied from interface: SearchProvider
        This method is called when the selection is made from the list of returned 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.
        Specified by:
        addVertexHopCriteria in interface SearchProvider
      • setGraphSearchService

        public void setGraphSearchService​(GraphSearchService graphSearchService)