Class BaseGetRefLogBuilder<PARAMS>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String filter
      Deprecated.
       
      protected java.lang.String fromHash
      Deprecated.
       
      protected java.lang.Integer maxRecords
      Deprecated.
       
      protected java.lang.String untilHash
      Deprecated.
       
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected BaseGetRefLogBuilder​(java.util.function.BiFunction<PARAMS,​java.lang.String,​PARAMS> paramsForPage)
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      GetRefLogBuilder filter​(java.lang.String filter)
      Deprecated.
      Required: the CEL script.
      GetRefLogBuilder fromHash​(java.lang.String fromHash)
      Deprecated.
      Hash of the reflog (inclusive) to end at (in chronological sense), the 'near' end of the reflog.
      org.projectnessie.model.RefLogResponse get()
      Deprecated.
      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.
      protected abstract org.projectnessie.model.RefLogResponse get​(PARAMS p)
      Deprecated.
       
      GetRefLogBuilder maxRecords​(int maxRecords)
      Deprecated.
      Sets the maximum number of records to be returned in a single response object from the PagingBuilder.get() method.
      GetRefLogBuilder pageToken​(java.lang.String pageToken)
      Deprecated.
      Sets the page token from the previous' PagingBuilder.get() method invocation.
      protected abstract PARAMS params()
      Deprecated.
       
      java.util.stream.Stream<org.projectnessie.model.RefLogResponse.RefLogResponseEntry> stream()
      Deprecated.
      Retrieve entries/results as a Java Stream, uses automatic paging.
      GetRefLogBuilder untilHash​(java.lang.String untilHash)
      Deprecated.
      Hash of the reflog (inclusive) to start from (in chronological sense), the 'far' end of the reflog.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • untilHash

        protected java.lang.String untilHash
        Deprecated.
      • fromHash

        protected java.lang.String fromHash
        Deprecated.
      • filter

        protected java.lang.String filter
        Deprecated.
      • maxRecords

        protected java.lang.Integer maxRecords
        Deprecated.
    • Constructor Detail

      • BaseGetRefLogBuilder

        protected BaseGetRefLogBuilder​(java.util.function.BiFunction<PARAMS,​java.lang.String,​PARAMS> paramsForPage)
        Deprecated.
    • Method Detail

      • untilHash

        public GetRefLogBuilder untilHash​(java.lang.String untilHash)
        Deprecated.
        Description copied from interface: GetRefLogBuilder
        Hash of the reflog (inclusive) to start from (in chronological sense), the 'far' end of the reflog.
        Specified by:
        untilHash in interface GetRefLogBuilder
      • fromHash

        public GetRefLogBuilder fromHash​(java.lang.String fromHash)
        Deprecated.
        Description copied from interface: GetRefLogBuilder
        Hash of the reflog (inclusive) to end at (in chronological sense), the 'near' end of the reflog.
        Specified by:
        fromHash in interface GetRefLogBuilder
      • maxRecords

        public GetRefLogBuilder maxRecords​(int maxRecords)
        Deprecated.
        Description copied from interface: PagingBuilder
        Sets the maximum number of records to be returned in a single response object from the PagingBuilder.get() method.

        This setter reflects the OpenAPI parameter maxRecords in a paged request.

        Specified by:
        maxRecords in interface PagingBuilder<GetRefLogBuilder,​org.projectnessie.model.RefLogResponse,​org.projectnessie.model.RefLogResponse.RefLogResponseEntry>
      • params

        protected abstract PARAMS params()
        Deprecated.
      • get

        protected abstract org.projectnessie.model.RefLogResponse get​(PARAMS p)
                                                               throws org.projectnessie.error.NessieNotFoundException
        Deprecated.
        Throws:
        org.projectnessie.error.NessieNotFoundException
      • get

        public org.projectnessie.model.RefLogResponse get()
                                                   throws org.projectnessie.error.NessieNotFoundException
        Deprecated.
        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 GetRefLogBuilder
        Specified by:
        get in interface PagingBuilder<GetRefLogBuilder,​org.projectnessie.model.RefLogResponse,​org.projectnessie.model.RefLogResponse.RefLogResponseEntry>
        Throws:
        org.projectnessie.error.NessieNotFoundException
      • stream

        public java.util.stream.Stream<org.projectnessie.model.RefLogResponse.RefLogResponseEntry> stream()
                                                                                                   throws org.projectnessie.error.NessieNotFoundException
        Deprecated.
        Description copied from interface: PagingBuilder
        Retrieve entries/results as a Java Stream, uses automatic paging.
        Specified by:
        stream in interface PagingBuilder<GetRefLogBuilder,​org.projectnessie.model.RefLogResponse,​org.projectnessie.model.RefLogResponse.RefLogResponseEntry>
        Throws:
        org.projectnessie.error.NessieNotFoundException