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

org.iworkz.habitat.dao.DataSourceProvider Maven / Gradle / Ivy

There is a newer version: 1.0.30
Show newest version
package org.iworkz.habitat.dao;

import javax.inject.Inject;
import javax.inject.Singleton;
import javax.sql.DataSource;

@Singleton
public class DataSourceProvider {
	
	@Inject
	private DataSource dataSource;
	
	public DataSource getDataSource() {
		return dataSource;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy