Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 26 for entraid (0.05 seconds)

  1. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        @Test
        public void test_getAuthenticator_entraidDirectAccess() {
            // Register an authenticator with "entraid" name
            ComponentUtil.register(testAuthenticator, "entraidAuthenticator");
    
            // Use new "entraid" SSO type
            currentSsoType = "entraid";
            ssoManager = new SsoManager() {
                @Override
                protected String getSsoType() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. CLAUDE.md

    ├── helper/                    # Cross-cutting utilities (~40+ helpers)
    ├── crawler/                   # Crawling engine (processor, transformer, service)
    ├── sso/                       # SSO implementations (oic, saml, spnego, entraid)
    ├── auth/                      # Authentication management
    ├── ldap/                      # LDAP integration
    ├── filter/                    # Servlet filters
    ├── validation/                # Custom validators
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String spnegoExcludeDirs;
    
        /** Entra ID application client ID. */
        @Size(max = 1000)
        public String entraidClientId;
    
        /** Entra ID application client secret. */
        @Size(max = 1000)
        public String entraidClientSecret;
    
        /** Entra ID tenant ID. */
        @Size(max = 1000)
        public String entraidTenant;
    
        /** Entra ID authority URL. */
        @Size(max = 1000)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                fessConfig.setSystemProperty("entraid.client.secret", form.entraidClientSecret);
            }
            fessConfig.setSystemProperty("entraid.tenant", form.entraidTenant);
            fessConfig.setSystemProperty("entraid.authority", form.entraidAuthority);
            fessConfig.setSystemProperty("entraid.reply.url", form.entraidReplyUrl);
            fessConfig.setSystemProperty("entraid.state.ttl", form.entraidStateTtl);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                    return systemPropMap.get(key);
                }
            };
    
            // Test with new entraid.use.ds key set to false
            systemPropMap.put("entraid.use.ds", "false");
            assertFalse(fessConfig.isEntraIdUseDomainServices());
    
            // Test with new entraid.use.ds key set to true
            systemPropMap.put("entraid.use.ds", "true");
            assertTrue(fessConfig.isEntraIdUseDomainServices());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** Configuration key for Entra ID client secret. */
        protected static final String ENTRAID_CLIENT_SECRET = "entraid.client.secret";
    
        /** Configuration key for Entra ID client ID. */
        protected static final String ENTRAID_CLIENT_ID = "entraid.client.id";
    
        /** Configuration key for Entra ID reply URL. */
        protected static final String ENTRAID_REPLY_URL = "entraid.reply.url";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        /**
         * Gets the permission fields for Entra ID authentication.
         * Uses new entraid.permission.fields key with fallback to legacy aad.permission.fields.
         * @return Array of permission field names.
         */
        default String[] getEntraIdPermissionFields() {
            String value = getSystemProperty("entraid.permission.fields", null);
            if (StringUtil.isBlank(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)
  8. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                <la:option value="spnego">SPNEGO</la:option>
                                                <la:option value="entraid">Entra ID</la:option>
                                            </la:select>
                                        </div>
                                    </div>
                                        <%-- Crawler --%>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  9. src/main/resources/fess_label_pt_BR.properties

    labels.disabled=Desabilitado
    labels.pathmap_pt_crawling=Rastreamento
    labels.pathmap_pt_displaying=Exibindo
    labels.pathmap_pt_both=Rastreamento/Exibição
    labels.pathmap_pt_stored=Conversão de URL extraída
    labels.regular_name=Nome regular
    labels.duplicate_name=Nome duplicado
    labels.duplicate_host_configuration=Host duplicado
    labels.duplicate_host_title_details=Host duplicado
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_en.properties

    labels.spnego_prompt_ntlm=Prompt NTLM
    labels.spnego_allow_localhost=Allow Localhost
    labels.spnego_allow_delegation=Allow Delegation
    labels.spnego_exclude_dirs=Exclude Directories
    labels.general_menu_entraid=Entra ID
    labels.entraid_client_id=Client ID
    labels.entraid_client_secret=Client Secret
    labels.entraid_tenant=Tenant
    labels.entraid_authority=Authority
    labels.entraid_reply_url=Reply URL
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
Back to Top