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

org.liveSense.service.DataSourceProvider.DataSourceStoreService Maven / Gradle / Ivy

The newest version!
package org.liveSense.service.DataSourceProvider;

import java.util.List;

import javax.sql.DataSource;

/**
 * OSGi service for managing dataSources. Multiple database and database type is supported.
 * 
 * @author robson
 *
 */
public interface DataSourceStoreService {
	
	public DataSource getDataSource(String name);
	public DataSourceProvider getDataSourceProvider(String name);

	public List getAllDataSourceProvider();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy