LoginConfigName
- Last Updated: July 15, 2022
- 1 minute read
- DataDirect Connectors
- JDBC
- Documentation
Purpose
Specifies the name of the entry in the JAAS login configuration file that contains the authentication technology used by the driver to establish a Kerberos connection. The LoginModule-specific items found in the entry are passed on to the LoginModule.
Valid Values
entry_name
where:
- entry_name
- is the name of the entry that contains the authentication technology used with the driver.
Example
In the following example, JDBC_DRIVER_01
is the entry name while the authentication technology and related settings are found in the
brackets.
JDBC_DRIVER_01 {
com.sun.security.auth.module.Krb5LoginModule required useTicketCache=true;
};
Data Source Methods
public String getLoginConfigName()
public void setLoginConfigName(String)
Default
JDBC_DRIVER_01
Data Type
String