Class PageResponseDTO

java.lang.Object
de.aeb.xnsg.foundation.bf.paging.PageResponseDTO

public class PageResponseDTO extends Object
Additional information for query results with applied PageRequestDTO.
  • Field Details

    • offset

      @NotNull public @NotNull Integer offset
      Indicates that there are more elements available to return (as applied from the provided PageRequestDTO).
    • size

      @NotNull public @NotNull Integer size
      The number of returned elements (as filtered by the provided PageRequestDTO).
    • hasMore

      @NotNull public @NotNull Boolean hasMore
      Indicates that there are more elements available to return.
    • totalCount

      @Nullable public BigInteger totalCount
      Calculated total number of available elements (if requested).
      See Also:
  • Constructor Details

    • PageResponseDTO

      public PageResponseDTO()