Package org.projectnessie.client.api
Interface PagingBuilder<R extends PagingBuilder<R>>
-
- All Known Subinterfaces:
GetAllReferencesBuilder,GetCommitLogBuilder,GetEntriesBuilder,GetRefLogBuilder
public interface PagingBuilder<R extends PagingBuilder<R>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RmaxRecords(int maxRecords)Recommended: specify the maximum number of records to return.RpageToken(String pageToken)For paged requests: pass thePaginatedResponse.getToken()from the previous request, otherwise don't call this method.
-
-
-
Method Detail
-
maxRecords
R maxRecords(int maxRecords)
Recommended: specify the maximum number of records to return.
-
pageToken
R pageToken(String pageToken)
For paged requests: pass thePaginatedResponse.getToken()from the previous request, otherwise don't call this method.
-
-