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

com.dream.drive.factory.DriveDataSourceFactory Maven / Gradle / Ivy

The newest version!
package com.dream.drive.factory;

import com.dream.system.datasource.DataSourceFactory;

import javax.sql.DataSource;

public class DriveDataSourceFactory implements DataSourceFactory {
    private DataSource dataSource;

    public DriveDataSourceFactory(DataSource dataSource) {
        this.dataSource = dataSource;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy