Package dovetaildb.api

Examples of dovetaildb.api.ChangesetBuffer


    return rec;
  }

  public ApiService newSession(String db, ParsedRequest request) {
    DbRecord rec = getDbRec(db);
    ApiService api = new ChangesetBuffer(rec.db);
    return rec.wrapApiService(api, request);
  }
View Full Code Here


import dovetaildb.util.Util;

public class StdLibTest  extends ApiServiceTest {

  protected ApiService createApi(DbService dbService) {
    return new ChangesetBuffer(dbService);
  }
View Full Code Here

TOP

Related Classes of dovetaildb.api.ChangesetBuffer

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.