DBResources.java [src/java/crp/utils] Revision: fad70b35517781f034beb514ca90f123dc4edaf6  Date: Fri Dec 06 14:19:16 MST 2019
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2017, 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 crp.utils;

import csip.annotations.Resource;
import static csip.annotations.ResourceType.JDBC;
import static crp.utils.DBResources.*;

/**
 *
 * @author Shaun Case
 */
@Resource(type = JDBC, file = "${soils.gis.database.db}", id = LOCAL_SQLSERVER, 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 LOCAL_SQLSERVER = "csip.soils.sqlsvr";
}