DBResources.java [src/java/adb/nrt] Revision: default  Date:
/*
 * $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 adb.nrt;

import csip.annotations.Resource;
import static csip.annotations.ResourceType.JDBC;
import static adb.nrt.DBResources.*;

/**
 *
 * @author Shaun Case
 */


@Resource(type = JDBC, file = "${soils.nrt.database.db}", id = NRT_SQLSVR, 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 NRT_SQLSVR = "csip.soils.nrt.sqlsvr";
}