Package net.caprazzi.slabs

Examples of net.caprazzi.slabs.SlabsDoc


    String senderTag = req.getHeader("X-CLIENT-TAG");
   
    if (info.isPath(webroot + "/data/stories/_/_")) {
      String id = info.get(-2);
      int revision = Integer.parseInt(info.get(-1));   
      SlabsDoc note = Note.fromJson(req.getInputStream());
      save(senderTag, id, revision, note, resp);
      return;
    }
   
    if (info.isPath(webroot + "/data/lists/_/_")) {
View Full Code Here

TOP

Related Classes of net.caprazzi.slabs.SlabsDoc

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.