MmConfigLdapSettings constructor

MmConfigLdapSettings({
  1. bool? enable,
  2. String? ldapServer,
  3. int? ldapPort,
  4. String? connectionSecurity,
  5. String? baseDN,
  6. String? bindUsername,
  7. String? bindPassword,
  8. String? userFilter,
  9. String? firstNameAttribute,
  10. String? lastNameAttribute,
  11. String? emailAttribute,
  12. String? usernameAttribute,
  13. String? nicknameAttribute,
  14. String? idAttribute,
  15. String? positionAttribute,
  16. int? syncIntervalMinutes,
  17. bool? skipCertificateVerification,
  18. int? queryTimeout,
  19. int? maxPageSize,
  20. String? loginFieldName,
})

Returns a new MmConfigLdapSettings instance.

Implementation

MmConfigLdapSettings({
  this.enable,
  this.ldapServer,
  this.ldapPort,
  this.connectionSecurity,
  this.baseDN,
  this.bindUsername,
  this.bindPassword,
  this.userFilter,
  this.firstNameAttribute,
  this.lastNameAttribute,
  this.emailAttribute,
  this.usernameAttribute,
  this.nicknameAttribute,
  this.idAttribute,
  this.positionAttribute,
  this.syncIntervalMinutes,
  this.skipCertificateVerification,
  this.queryTimeout,
  this.maxPageSize,
  this.loginFieldName,
});