Package ca.carleton.gcrc.couch.date

Examples of ca.carleton.gcrc.couch.date.DateServletConfiguration


  }

  private void initDate(ServletContext servletContext) throws ServletException {

    try {
      DateServletConfiguration config = new DateServletConfiguration();
      CouchDb couchDb = couchDd.getDatabase();
      config.setCouchDb(couchDb);
      CouchDesignDocument atlasDesign = couchDb.getDesignDocument("atlas");
      config.setAtlasDesignDocument(atlasDesign);
      servletContext.setAttribute(DateServletConfiguration.CONFIGURATION_KEY, config);

    } catch(Exception e) {
      logger.error("Error configuring export service",e);
      throw new ServletException("Error configuring export service",e);
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.couch.date.DateServletConfiguration

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.