Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getLdapInitialContextFactory (0.12 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setLdapInitialContextFactory(final String value) {
            setSystemProperty(Constants.LDAP_INITIAL_CONTEXT_FACTORY, value);
        }
    
        default String getLdapInitialContextFactory() {
            return getSystemProperty(Constants.LDAP_INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
        }
    
        default void setLdapSecurityAuthentication(final String value) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         *
         * @return The admin environment for LDAP connection.
         */
        protected Hashtable<String, String> createAdminEnv() {
            return createEnvironment(//
                    fessConfig.getLdapInitialContextFactory(), //
                    fessConfig.getLdapSecurityAuthentication(), fessConfig.getLdapProviderUrl(), //
                    fessConfig.getLdapAdminSecurityPrincipal(), //
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
Back to Top