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

com.sap.cloud.sdk.hana.connectivity.handler.DataSourceHandlerFactory Maven / Gradle / Ivy

There is a newer version: 1.40.11
Show newest version
/*******************************************************************************
 * (c) 201X SAP SE or an SAP affiliate company. All rights reserved.
 ******************************************************************************/
package com.sap.cloud.sdk.hana.connectivity.handler;

import java.sql.Connection;

public class DataSourceHandlerFactory {
	
	private static DataSourceHandlerFactory dsHandlerFactory = null;
	public static DataSourceHandlerFactory getInstance(){
		
		if(dsHandlerFactory == null){
			dsHandlerFactory = new DataSourceHandlerFactory();
		}
		
		return dsHandlerFactory;
	}
	
	public CDSDataSourceHandler getCDSHandler(Connection conn, String nameSpace){
		CDSDataSourceHandler cdsHandler = new CDSDataSourceHandlerImpl(conn, nameSpace);
		return cdsHandler;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy