All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.server.pagination.rest.main.RestAppPage.mustache Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package {{packageName}}.shared.pagination.infrastructure.primary;

import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.media.Schema.RequiredMode;
import java.util.List;
import java.util.function.Function;
import {{packageName}}.shared.error.domain.Assert;
import {{packageName}}.shared.pagination.domain.{{baseName}}Page;

@Schema(name = "Page", description = "Paginated content")
public final class Rest{{baseName}}Page {

  private final List content;
  private final int currentPage;
  private final int pageSize;
  private final long totalElementsCount;
  private final int pagesCount;
  private final boolean hasPrevious;
  private final boolean hasNext;

  private Rest{{baseName}}Page(Rest{{baseName}}PageBuilder builder) {
    content = builder.content;
    currentPage = builder.currentPage;
    pageSize = builder.pageSize;
    totalElementsCount = builder.totalElementsCount;
    pagesCount = builder.pageCount;
    hasPrevious = builder.hasPrevious;
    hasNext = builder.hasNext;
  }

  public static  Rest{{baseName}}Page from({{baseName}}Page source, Function mapper) {
    Assert.notNull("source", source);
    Assert.notNull("mapper", mapper);

    return new Rest{{baseName}}PageBuilder<>(source.content().stream().map(mapper).toList())
      .currentPage(source.currentPage())
      .pageSize(source.pageSize())
      .totalElementsCount(source.totalElementsCount())
      .pageCount(source.pageCount())
      .hasPrevious(source.hasPrevious())
      .hasNext(source.hasNext())
      .build();
  }

  @Schema(description = "Page content")
  public List getContent() {
    return content;
  }

  @Schema(description = "Current page (starts at 0)", example = "0", requiredMode = RequiredMode.REQUIRED)
  public int getCurrentPage() {
    return currentPage;
  }

  @Schema(description = "Number of elements on each page", example = "10", requiredMode = RequiredMode.REQUIRED)
  public int getPageSize() {
    return pageSize;
  }

  @Schema(description = "Total number of elements to paginate", example = "100", requiredMode = RequiredMode.REQUIRED)
  public long getTotalElementsCount() {
    return totalElementsCount;
  }

  @Schema(description = "Number of resulting pages", example = "10", requiredMode = RequiredMode.REQUIRED)
  public int getPagesCount() {
    return pagesCount;
  }

  @Schema(description = "True is there is a previous page, false otherwise", requiredMode = RequiredMode.REQUIRED)
  public boolean getHasPrevious() {
    return hasPrevious;
  }

  @Schema(description = "True is there is a next page, false otherwise", requiredMode = RequiredMode.REQUIRED)
  public boolean getHasNext() {
    return hasNext;
  }

  private static final class Rest{{baseName}}PageBuilder {

    private final List content;
    private int currentPage;
    private int pageSize;
    private long totalElementsCount;
    private int pageCount;
    private boolean hasPrevious;
    private boolean hasNext;

    private Rest{{baseName}}PageBuilder(List content) {
      this.content = content;
    }

    public Rest{{baseName}}PageBuilder pageSize(int pageSize) {
      this.pageSize = pageSize;

      return this;
    }

    public Rest{{baseName}}PageBuilder currentPage(int currentPage) {
      this.currentPage = currentPage;

      return this;
    }

    public Rest{{baseName}}PageBuilder totalElementsCount(long totalElementsCount) {
      this.totalElementsCount = totalElementsCount;

      return this;
    }

    public Rest{{baseName}}PageBuilder pageCount(int pageCount) {
      this.pageCount = pageCount;

      return this;
    }

    public Rest{{baseName}}PageBuilder hasPrevious(boolean hasPrevious) {
      this.hasPrevious = hasPrevious;

      return this;
    }

    public Rest{{baseName}}PageBuilder hasNext(boolean hasNext) {
      this.hasNext = hasNext;

      return this;
    }

    public Rest{{baseName}}Page build() {
      return new Rest{{baseName}}Page<>(this);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy