Interface ScopedListSource<T>

Type Parameters:
T -
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ScopedListSource<T>
Fetch a list of data objects based a provided list of identifying values.
  • Method Summary

    Modifier and Type
    Method
    Description
    fetch(List<String> identifyingValues)
    Fetch a list of data objects based on a provided list of identifying values.
  • Method Details

    • fetch

      List<T> fetch(List<String> identifyingValues)
      Fetch a list of data objects based on a provided list of identifying values. This represents a chunk (page) of values from an overall list. See BroadleafScopedPagingStreams for more information.
      Parameters:
      identifyingValues - The list of values that defines the scope of the results
      Returns:
      The data objects