All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tools.xor.providers.jdbc.JDBCConfigDataModel Maven / Gradle / Ivy

There is a newer version: 2.4.1
Show newest version
package tools.xor.providers.jdbc;

import javax.sql.DataSource;

import tools.xor.TypeMapper;
import tools.xor.service.DataModelFactory;

public class JDBCConfigDataModel extends JDBCDataModel
{
    private DataSource dataSource;

    public JDBCConfigDataModel (DataModelFactory dasFactory, TypeMapper typeMapper)
    {
        super(dasFactory, typeMapper);
    }

    public void setDataSource(DataSource ds) {
        this.dataSource = ds;
    }

    @Override public DataSource getDataSource ()
    {
        return dataSource;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy