Interface Changes

All Superinterfaces:
Collection<ChangedItem>, Iterable<ChangedItem>, List<ChangedItem>

public interface Changes extends List<ChangedItem>
Represents collection changes.
  • Method Details

    • setNewSyncToken

      void setNewSyncToken(String newSyncToken)
      Sets the synchronization token provided by the server.
      Parameters:
      newSyncToken - The new synchronization token provided by the server.
    • getNewSyncToken

      String getNewSyncToken()
      Returns the synchronization token provided by the server.
      Returns:
      The synchronization token provided by the server.
    • setMoreResults

      void setMoreResults(boolean moreResults)
      Indicates that results is truncated.

      A server MAY limit the number of member URLs in a response, for example, to limit the amount of work expended in processing a request, or as the result of an explicit limit set by the client.

      Parameters:
      moreResults - If there are more results.
    • getMoreResults

      boolean getMoreResults()
      Indicates that results is truncated.

      A server MAY limit the number of member URLs in a response, for example, to limit the amount of work expended in processing a request, or as the result of an explicit limit set by the client.

      Returns:
      True if there are more results false otherwise.