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

com.sap.cds.jdbc.spi.SessionVariableSetter Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
/*******************************************************************
 * © 2022 SAP SE or an SAP affiliate company. All rights reserved. *
 ******************************************************************/
package com.sap.cds.jdbc.spi;

import java.sql.Connection;
import java.sql.SQLException;
import java.util.Map;

public interface SessionVariableSetter {
	
	String LOCALE = "LOCALE";
	String APPLICATIONUSER = "APPLICATIONUSER";
	String VALID_TO = "VALID-TO";
	String VALID_FROM = "VALID-FROM";
	String TENANT = "TENANT";

	void set(Connection conn, Map contextVariables) throws SQLException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy