Package org.projectnessie.client.api
Interface GetAllReferencesBuilder
-
- All Superinterfaces:
PagingBuilder<GetAllReferencesBuilder>,QueryBuilder<GetAllReferencesBuilder>
public interface GetAllReferencesBuilder extends QueryBuilder<GetAllReferencesBuilder>, PagingBuilder<GetAllReferencesBuilder>
Request builder for "get all references".- Since:
NessieApiV1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetAllReferencesBuilderfetchAdditionalInfo(boolean fetchAdditionalInfo)ReferencesResponseget()Fetches all references and returns them in aReferencesResponseinstance.-
Methods inherited from interface org.projectnessie.client.api.PagingBuilder
maxRecords, pageToken
-
Methods inherited from interface org.projectnessie.client.api.QueryBuilder
queryExpression
-
-
-
-
Method Detail
-
fetchAdditionalInfo
GetAllReferencesBuilder fetchAdditionalInfo(boolean fetchAdditionalInfo)
Will fetch additional metadata aboutBranch/Taginstances, such as number of commits ahead/behind or the common ancestor in relation to the default branch, and the commit metadata for the HEAD commit.- Returns:
GetAllReferencesBuilder
-
get
ReferencesResponse get()
Fetches all references and returns them in aReferencesResponseinstance.- Returns:
- Fetches all references and returns them in a
ReferencesResponseinstance.
-
-