Interface ServiceManagerUI.SearchResultCallback<T>
-
- Type Parameters:
T
- The type of the search result.
- All Known Implementing Classes:
ServiceManagerUI.CustomerSearchResultCallback
,ServiceManagerUI.ServiceSearchResultCallback
- Enclosing class:
- ServiceManagerUI
public static interface ServiceManagerUI.SearchResultCallback<T>
Functional interface intended to be used to create the content that will be placed in the page when a search result is clicked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.vaadin.flow.component.Component
buildSearchResultDetailsPage(T searchResult)
Given a search result, builds content to be displayed in the page.
-
-
-
Method Detail
-
buildSearchResultDetailsPage
com.vaadin.flow.component.Component buildSearchResultDetailsPage(T searchResult)
Given a search result, builds content to be displayed in the page.- Parameters:
searchResult
- The search result to be expanded.- Returns:
- The visual component that will show the detailed information about the search result.
-
-