Example usage for org.apache.commons.dbcp.managed BasicManagedDataSource subclass-usage

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

Introduction

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

Usage

From source file org.nuxeo.runtime.datasource.PatchedBasicManagedDataSource.java

/**
 * Patched to use PatchedPoolableManagedConnectionFactory
 */
public class PatchedBasicManagedDataSource extends BasicManagedDataSource {

    @Override

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

public class BasicManagedDataSource extends org.apache.commons.dbcp.managed.BasicManagedDataSource {

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

From source file org.apache.openejb.resource.jdbc.dbcp.DbcpManagedDataSource.java

public class DbcpManagedDataSource extends BasicManagedDataSource {

    private final CommonDataSource ds;

    public DbcpManagedDataSource(final String name, final CommonDataSource dataSource) {
        super(name);

From source file org.apache.openejb.resource.jdbc.dbcp.BasicManagedDataSource.java

@SuppressWarnings({ "UnusedDeclaration" })
public class BasicManagedDataSource extends org.apache.commons.dbcp.managed.BasicManagedDataSource {

    private static final ReentrantLock lock = new ReentrantLock();

    private Logger logger;