Interface GetAllReferencesBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods 
      Modifier and Type Method Description
      default GetAllReferencesBuilder fetch​(org.projectnessie.api.params.FetchOption fetchOption)
      Deprecated.
      GetAllReferencesBuilder fetch​(org.projectnessie.model.FetchOption fetchOption)
      Will fetch additional metadata about Branch / Tag instances, 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.
      org.projectnessie.model.ReferencesResponse get()
      Advanced usage, for manual paging: fetches a response chunk (might be one page or complete response depending on use case and parameters), but callers must implement paging on their own, if necessary.
    • Method Detail

      • fetch

        GetAllReferencesBuilder fetch​(org.projectnessie.model.FetchOption fetchOption)
        Will fetch additional metadata about Branch / Tag instances, 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.
        Parameters:
        fetchOption - The option indicating how much info to fetch
        Returns:
        GetAllReferencesBuilder
      • fetch

        @Deprecated
        default GetAllReferencesBuilder fetch​(org.projectnessie.api.params.FetchOption fetchOption)
        Deprecated.
        Legacy API method for backward compatibility. Use fetch(FetchOption) instead.
      • get

        org.projectnessie.model.ReferencesResponse get()
        Description copied from interface: PagingBuilder
        Advanced usage, for manual paging: fetches a response chunk (might be one page or complete response depending on use case and parameters), but callers must implement paging on their own, if necessary. If in doubt, use PagingBuilder.stream() instead.
        Specified by:
        get in interface PagingBuilder<GetAllReferencesBuilder,​org.projectnessie.model.ReferencesResponse,​org.projectnessie.model.Reference>