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

com.sap.cds.services.datasource.DataSourceDescriptor 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 javax.sql.DataSource;

/**
 * The descriptor of {@link DataSource} objects
 */
public interface DataSourceDescriptor {

	/**
	 * @return the name of the data source
	 */
	String getName();

	/**
	 * @return the driver class name
	 */
	String getDriverClassName();

	/**
	 * @return the JDBC url
	 */
	String getUrl();

	/**
	 * @return the JDBC username
	 */
	String getUsername();

	/**
	 * @return the JDBC password
	 */
	String getPassword();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy