/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.resource.jdbc.pool; import org.apache.openejb.resource.XAResourceWrapper; import org.apache.openejb.resource.jdbc.dbcp.BasicDataSource; import org.apache.openejb.resource.jdbc.dbcp.BasicManagedDataSource; import org.apache.openejb.resource.jdbc.dbcp.DbcpDataSource; import org.apache.openejb.resource.jdbc.dbcp.DbcpDataSourceCreator; import org.apache.openejb.resource.jdbc.dbcp.DbcpManagedDataSource; import org.apache.openejb.resource.jdbc.dbcp.ManagedDataSourceWithRecovery; import javax.sql.CommonDataSource; import javax.sql.DataSource; import java.util.Properties; public class DefaultDataSourceCreator extends DbcpDataSourceCreator { @Override public DataSource managed(final String name, final CommonDataSource ds) { return new DbcpManagedDataSource(name, ds); } @Override public DataSource poolManaged(final String name, final DataSource ds, final Properties properties) { return build(DbcpManagedDataSource.class, new DbcpManagedDataSource(name, ds), properties); } @Override public DataSource poolManaged(final String name, final String driver, final Properties properties) { final BasicManagedDataSource ds = new BasicManagedDataSource(name); ds.setDriverClassName(driver); build(BasicManagedDataSource.class, ds, properties); return ds; } @Override public DataSource poolManagedWithRecovery(final String name, final XAResourceWrapper xaResourceWrapper, final String driver, final Properties properties) { final BasicManagedDataSource ds = new ManagedDataSourceWithRecovery(name, xaResourceWrapper); ds.setDriverClassName(driver); build(BasicManagedDataSource.class, ds, properties); return ds; } @Override public DataSource pool(final String name, final DataSource ds, final Properties properties) { return build(DbcpDataSource.class, new DbcpDataSource(name, ds), properties); } @Override public DataSource pool(final String name, final String driver, final Properties properties) { final BasicDataSource ds = new BasicDataSource(name); ds.setDriverClassName(driver); build(BasicManagedDataSource.class, ds, properties); return ds; } }