yscore.sdk-ldap.0.1.1.source-code.LdapConfig.kt Maven / Gradle / Ivy
The newest version!
package com.isyscore.os.sdk.ldap
data class LdapConfig(
/**
* LDAP URL
*
* sample: ldap://10.30.30.21:389
*/
var url: String = "",
/**
* BaseDC
*
* sample: cn=admin,dc=isyscore,dc=com
*/
var baseDC: String = "",
/**
* NameDN
*
* sample: ou=People,dc=isyscore,dc=com
*/
var nameDN: String = "",
/**
* 密码
*/
var password: String = "",
/**
* 请求超时时间
*/
var timeout: Long = 3000L,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy