Interface RepositorySearchResult


public interface RepositorySearchResult
Represents the search result for a search performed in the scope of a repository. See SearchOperations.targetedSearch(GlobalSearchContext).
Since:
3.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    getByDataset(com.orchestranetworks.instance.HomeKey homeKey, com.onwbp.adaptation.AdaptationName adaptationName)
    Gets search results belonging to a dataset.
    getByDataspace(com.orchestranetworks.instance.HomeKey homeKey)
    Gets search results belonging to a dataspace.
    Gets all search results.
    getByTable(com.onwbp.adaptation.AdaptationTable table)
    Gets search results belonging to a table.
    getByTableNode(com.orchestranetworks.schema.SchemaNode tableNode)
    Gets search results belonging to a table node.
    List<com.onwbp.adaptation.AdaptationName>
    getDatasets(com.orchestranetworks.instance.HomeKey homeKey)
    Get all the datasets belonging to a specific dataspace where the search result is found.
    List<com.orchestranetworks.instance.HomeKey>
    Gets all the dataspaces where the search result is found.
    List<com.onwbp.adaptation.AdaptationTable>
    getTables(com.orchestranetworks.instance.HomeKey homeKey, com.onwbp.adaptation.AdaptationName adaptationName)
    Get all the tables belonging to a specific dataspace and dataset where the search result is found.
  • Method Details

    • getByRepository

      List<TableSearchResult> getByRepository()
      Gets all search results.
    • getByDataspace

      List<TableSearchResult> getByDataspace(com.orchestranetworks.instance.HomeKey homeKey)
      Gets search results belonging to a dataspace.
    • getByDataset

      List<TableSearchResult> getByDataset(com.orchestranetworks.instance.HomeKey homeKey, com.onwbp.adaptation.AdaptationName adaptationName)
      Gets search results belonging to a dataset.
    • getByTable

      TableSearchResult getByTable(com.onwbp.adaptation.AdaptationTable table)
      Gets search results belonging to a table.
    • getByTableNode

      List<TableSearchResult> getByTableNode(com.orchestranetworks.schema.SchemaNode tableNode)
      Gets search results belonging to a table node.
    • getDataspaces

      List<com.orchestranetworks.instance.HomeKey> getDataspaces()
      Gets all the dataspaces where the search result is found.
    • getDatasets

      List<com.onwbp.adaptation.AdaptationName> getDatasets(com.orchestranetworks.instance.HomeKey homeKey)
      Get all the datasets belonging to a specific dataspace where the search result is found.
    • getTables

      List<com.onwbp.adaptation.AdaptationTable> getTables(com.orchestranetworks.instance.HomeKey homeKey, com.onwbp.adaptation.AdaptationName adaptationName)
      Get all the tables belonging to a specific dataspace and dataset where the search result is found.