We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.hilla.crud.
Package com.vaadin.hilla.crud
Interface ListService<T>
All Known Subinterfaces:
CrudService<T,
All Known Implementing Classes:
public interface ListService<T>
A browser-callable service that can list the given type of object.
-
Method Summary
-
Method Details
-
list
@NonNull List<@NonNull T> list(org.springframework.data.domain.Pageable pageable, @Nullable Filter filter) Lists objects of the given type using the paging, sorting and filtering options provided in the parameters.
Parameters:
pageable
- contains information about paging and sortingfilter
- the filter to apply ornull
to not filterReturns:
a list of objects or an empty list if no objects were found
-