All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flowthings.client.api.MutableDomainObjectApi Maven / Gradle / Ivy

There is a newer version: 0.9.3.2
Show newest version
package com.flowthings.client.api;

public class MutableDomainObjectApi extends DomainObjectApi {

  public MutableDomainObjectApi(Class clazz) {
    super(clazz);
  }

  /**
   * Update an object with new attributes
   * 
   * @param id
   *          - the object's ID
   * @param t
   *          - an object containing new values
   * @return - A request object, to pass to an API
   */
  public Request update(String id, T t) {
    return Request.createObjectRequest(clazz, Request.Action.UPDATE)//
        .body(t).id(id);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy