DBResources.java [src/java/db] Revision: 90874a9580306851b3020a4b0877aa28da9c0f53  Date: Fri Jun 11 11:00:16 MDT 2021
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2019, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package db;

import csip.annotations.Resource;
import static csip.annotations.ResourceType.JDBC;
import static db.DBResources.GIS_DB;

/**
 *
 * @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
 */
@Resource(type = JDBC, file = "${gis.database.db}", id = GIS_DB, env = {
  "removeAbandoned=true", "defaultReadOnly=true", "defaultAutoCommit=false", "maxWait=300000", "jmxEnabled=false",
  "jdbcInterceptors=org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;"
  + "org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer;"
  + "org.apache.tomcat.jdbc.pool.interceptor.ResetAbandonedTimer"
})

public interface DBResources {

  static final String GIS_DB = "csip.gis.db";
}