是什么为 Bitbucket API 提供了 PageUtils 和 PagedIterable?

What provides PageUtils and PagedIterable for the Bitbucket API?

我正在尝试查找提供包的内容:

com.atlassian.bitbucket.util.PageUtils;
com.atlassian.bitbucket.util.PagedIterable;

我看过:

Bitbucket API

Bitbucket SCM Common

Bitbucket SPI

PageUtils class 是 bitbucket-util jar 的一部分。 https://packages.atlassian.com/maven-external/com/atlassian/bitbucket/server/bitbucket-util/ 只需添加一个依赖项

  <dependency>
      <groupId>com.atlassian.bitbucket.server</groupId>
      <artifactId>bitbucket-util</artifactId>
      <scope>provided</scope>
  </dependency>