Package com.fourspaces.couchdb

Examples of com.fourspaces.couchdb.Session


  public static Session getTestSession() {
    Properties props = new Properties();
    try {
      InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("couchdb-test.properties");
      props.load(is);
      return new Session(props.getProperty("host"),Integer.parseInt(props.getProperty("port")));
    } catch (Exception e) {
      return new Session("localhost",5984);
      //throw new RuntimeException(e);
    }   
  }
View Full Code Here

TOP

Related Classes of com.fourspaces.couchdb.Session

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.