Package ca.carleton.gcrc.couch.client

Examples of ca.carleton.gcrc.couch.client.CouchClient


    GlobalSettings gs
    ,AtlasProperties atlasProperties
    ) throws Exception {
   
    // Create couch client
    CouchClient couchClient = null;
    {
      Properties couchClientProps = new Properties();
      couchClientProps.put("couchdb.server", atlasProperties.getCouchDbUrl().toExternalForm());
      couchClientProps.put("couchdb.user", atlasProperties.getCouchDbAdminUser());
      couchClientProps.put("couchdb.password", atlasProperties.getCouchDbAdminPassword());
 
      CouchFactory couchFactory = new CouchFactory();
      couchClient = couchFactory.getClient(couchClientProps);
     
      // Verify that we can connect to the server
      try {
        couchClient.validateContext();
      } catch(Exception e) {
        throw new Exception("Unable to connect to the server. Probably wrong user name or password.",e);
      }
    }
    return couchClient;
View Full Code Here


  static public CouchDb createCouchDb(
    GlobalSettings gs
    ,AtlasProperties atlasProperties
    ) throws Exception {
   
    CouchClient couchClient = createCouchClient(gs, atlasProperties);
   
    // Get database from Couch Client
    CouchDb couchDb = null;
    {
      String dbName = atlasProperties.getCouchDbName();
      if( false == couchClient.databaseExists(dbName) ) {
        couchClient.createDatabase(dbName);
      }
      couchDb = couchClient.getDatabase(dbName);
    }
    return couchDb;
  }
View Full Code Here

  static public CouchDb createCouchDbSubmission(
    GlobalSettings gs
    ,AtlasProperties atlasProperties
    ) throws Exception {
   
    CouchClient couchClient = createCouchClient(gs, atlasProperties);
   
    // Get database from Couch Client
    CouchDb couchDb = null;
    {
      String dbName = atlasProperties.getCouchDbSubmissionDbName();
      if( false == couchClient.databaseExists(dbName) ) {
        couchClient.createDatabase(dbName);
      }
      couchDb = couchClient.getDatabase(dbName);
    }
    return couchDb;
  }
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.couch.client.CouchClient

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.