Package org.lightcouch

Examples of org.lightcouch.Response


      json.addProperty ("_id", key.identifier);
      if (key.revision != null)
        json.addProperty ("_rev", key.revision);
    }
    json.addProperty ("type", type);
    final Response response = this.client.save (json);
    return (new Key (response.getId (), response.getRev ()));
  }
View Full Code Here

TOP

Related Classes of org.lightcouch.Response

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.