ldapConfiguration element

Type: ldapConfiguration
Namespace: (default namespace)
XML Schema: ns0.xsd

Example XML

<?xml version="1.0" encoding="UTF-8"?> <ldapConfiguration> <authenticationMethod>...</authenticationMethod> <extraProperties> <entry> <key>...</key> <value>...</value> </entry> <entry> <key> <!--(another 'string' type)--> </key> <value> <!--(another 'string' type)--> </value> </entry> <!--...more entries...--> </extraProperties> <extraPropertiesEntries> <key>...</key> <value>...</value> </extraPropertiesEntries> <extraPropertiesEntries> <!--...--> </extraPropertiesEntries> <!--...more "extraPropertiesEntries" elements...--> <ssl>...</ssl> <port>...</port> <baseDn>...</baseDn> <bindAuthenticatorEnabled>...</bindAuthenticatorEnabled> <hostName>...</hostName> <contextFactory>...</contextFactory> <useRoleNameAsGroup>...</useRoleNameAsGroup> <writable>...</writable> <password>...</password> <bindDn>...</bindDn> <baseGroupsDn>...</baseGroupsDn> </ldapConfiguration>

Example JSON

{ "authenticationMethod" : "...", "extraProperties" : [ { "..." : ... }, { } ], "extraPropertiesEntries" : [ { "key" : "...", "value" : "..." }, ... ], "ssl" : false, "port" : ..., "baseDn" : "...", "bindAuthenticatorEnabled" : false, "hostName" : "...", "contextFactory" : "...", "useRoleNameAsGroup" : false, "writable" : false, "password" : "...", "bindDn" : "...", "baseGroupsDn" : "..." }