Package com.findwise.hydra.local

Examples of com.findwise.hydra.local.LocalDocument.toJson()


 
  @Override
  public String toJson() {
    LocalDocument ld = new LocalDocument();
    ld.putAll(this);
    return ld.toJson();
  }
 
  @Override
  public String contentFieldsToJson(Iterable<String> contentFields) {
    LocalDocument ld = new LocalDocument();
View Full Code Here


    LocalDocument ld = new LocalDocument();
    ld.putContentField("field", "value");
    ld.markSynced();
    ld.removeContentField("field");
   
    MongoDocument md = new MongoDocument(ld.toJson());
   
    assertEquals(1, md.getTouchedContent().size());
    assertNull(md.getContentField("field"));
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.