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

com.sap.cds.services.datasource.DataSourceFactory Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.services.datasource;

import java.util.Map;

import javax.sql.DataSource;

import com.sap.cds.services.runtime.CdsRuntime;
import com.sap.cds.services.runtime.CdsRuntimeAware;

/**
 * Interface for classes that create {@link DataSource} objects.
 * Implementing classes can get access to the {@link CdsRuntime} by implementing {@link CdsRuntimeAware}.
 */
public interface DataSourceFactory {

	/**
	 * A map containing all created {@link DataSource} objects.
	 * The key in the map is the name assigned to the {@link DataSource}
	 *
	 * @return the map of {@link DataSource} objects
	 */
	Map create();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy