Example usage for org.apache.commons.dbcp BasicDataSource subclass-usage

List of usage examples for org.apache.commons.dbcp BasicDataSource subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.dbcp BasicDataSource subclass-usage.

Usage

From source file com.krawler.esp.database.MBasicDataSource.java

/**
 *
 * @author krawler
 */
public class MBasicDataSource extends BasicDataSource {

From source file org.apache.openejb.resource.jdbc.BasicDataSource.java

public class BasicDataSource extends org.apache.commons.dbcp.BasicDataSource {

    /**
     * The password codec to be used to retrieve the plain text password from a
     * ciphered value.
     * 

From source file org.jumpmind.db.util.ResettableBasicDataSource.java

/**
 * A subclass of {@link BasicDataSource} which allows for a data source to be
 * closed (all underlying connections are closed) and then allows new
 * connections to be created.
 */
@SuppressWarnings("deprecation")

From source file org.agnitas.dao.EnhBasicDataSource.java

/**
 *
 * @author  mhe
 */
public class EnhBasicDataSource extends BasicDataSource {

From source file com.jaspersoft.jasperserver.api.engine.jasperreports.service.impl.BasicDataSourceWrapper.java

public class BasicDataSourceWrapper extends BasicDataSource {

    private TibcoDriverManager tibcoDriverManager;

    public BasicDataSourceWrapper() {
        super();

From source file net.mlw.vlh.adapter.jdbc.util.MyBasicDataSource.java

/** This class wraps the org.apache.commons.dbcp.BasicDataSource exposing
 *  the prtected connectionProperties as a bean setters and getters.
 * 
 * net.mlw.vlh.adapter.jdbc.util.MyBasicDataSource
 * 
 * @author mwilson

From source file net.firejack.platform.core.utils.OpenFlameDataSource.java

public class OpenFlameDataSource extends BasicDataSource {

    protected static Logger logger = Logger.getLogger(OpenFlameDataSource.class);

    private DatabaseName name;
    private String sid;

From source file org.qamatic.mintleaf.ApacheBasicDataSource.java

/**
 * Created by qamatic on 3/5/16.
 */
public class ApacheBasicDataSource extends BasicDataSource implements DriverSource {

    @Override

From source file org.qamatic.mintleaf.dbexample.ApacheBasicDataSource.java

/**
 * Created by qamatic on 3/5/17.
 */
public class ApacheBasicDataSource extends BasicDataSource implements DriverSource {

    @Override

From source file org.sonar.core.persistence.profiling.ProfilingDataSource.java

class ProfilingDataSource extends BasicDataSource {

    private final BasicDataSource delegate;

    public ProfilingDataSource(BasicDataSource delegate) {
        this.delegate = delegate;