Package ilog.rules.res.session.config
Interface IlrJDBCPersistenceConfig
public interface IlrJDBCPersistenceConfig
The configuration based on persistence in JDBC mode.
- Since:
- 8.0
-
Method Summary
Modifier and TypeMethodDescriptiongetURL()getUser()voidsetCryptedPassword(String password) voidsetDriverClassName(String name) voidsetPassword(String password) voidvoid
-
Method Details
-
setUser
- Parameters:
user- the user name to connect to the database
-
getUser
String getUser()- Returns:
- the user name to connect to the database
-
setURL
- Parameters:
url- the URL to connect to the database
-
getURL
String getURL()- Returns:
- the URL to connect to the database
-
setDriverClassName
- Parameters:
name- the name of the driver class used to connect to the database
-
getDriverClassName
String getDriverClassName()- Returns:
- the name of the driver class used to connect to the database
-
setPassword
- Parameters:
password- the password used to connect to the database
-
getPassword
String getPassword()- Returns:
- the password used to connect to the database
-
setCryptedPassword
- Parameters:
password- the crypted password used to connect to the database
-
getCryptedPassword
String getCryptedPassword()- Returns:
- the crypted password used to connect to the database
-