Class SyncPage.SyncPageBuilder

  • Enclosing class:
    SyncPage

    public static class SyncPage.SyncPageBuilder
    extends java.lang.Object
    • Method Detail

      • syncType

        public SyncPage.SyncPageBuilder syncType​(SyncType syncType)
        SyncType for the Syncpage.

        This enum represents the different types of synchronization operations that can be performed. Each type is associated with a specific HttpMethod to indicate the type of HTTP request used for that operation.

        • FULL: Used for sending full datasets. This will send the entire set of data to the server using POST.
        • DELTA: Used for sending only updated or modified entries. This will send only the changes using PATCH.
        • DELETE: Used for deleting entities. This will remove the specified entities using DELETE.
        Returns:
        this.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object