Full Update without the Overwrite Check

This method overwrites the data on the server with the key-value pairs sent from the client (the data on the server will be lost).

The data will be overwritten unconditionally regardless of if the data on the server is updated by other clients.

Here is the sample code:

  • // Instantiate a KiiObject.
    Uri objUri = Uri.parse("Set the URI of an existing KiiObject here");
    KiiObject object = KiiObject.createByUri(objUri);
    
    try {
      // Update key-value pairs.
      object.set("myid", 1);
      object.set("name", "John Doe Jr");
      object.set("email", "john_jr@example.com");
      object.remove("address");
    
      // Save and fully update the KiiObject.
      // This method removes all key-value pairs from the KiiObject on the server and
      // adds the key-value pairs generated locally to the KiiObject.
      object.saveAllFields(true);
    } catch (AppException e) {
      // Handle the error.
    } catch (IOException e) {
      // Handle the error.
    }
  • // Instantiate a KiiObject.
    Uri objUri = Uri.parse("Set the URI of an existing KiiObject here");
    KiiObject object = KiiObject.createByUri(objUri);
    
    // Update key-value pairs.
    object.set("myid", 1);
    object.set("name", "John Doe Jr");
    object.set("email", "john_jr@example.com");
    object.remove("address");
    
    // Save and fully update the KiiObject.
    // This method removes all key-value pairs from the KiiObject on the server and
    // adds the key-value pairs generated locally to the KiiObject.
    object.saveAllFields(new KiiObjectCallBack() {
      @Override
      public void onSaveCompleted(int token, KiiObject object, Exception exception) {
        if (exception != null) {
          // Handle the error.
          return;
        }
      }
    }, true);

This is what is happening in the sample code:

  1. Prepare a KiiObject to update. In this sample code, we are creating a KiiObject with its URI (Replace the URI in the code with the real one when you are running the code).
  2. Add key-value pairs with the set() method and remove a key-value pair with the remove() method. Only the key-value pairs set here will be in the KiiOject after the updating. If you need to do so, you can execute the refresh() method beforehand to get all key-value pairs in the server (See Getting a KiiObject for the implementation example).
  3. Execute the saveAllFields() method to update the KiiObject. By setting the argument to true, we are disabling the overwrite check; the update will be made unconditionally.