Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Mazuro (1.45 sec)

  1. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        // Legacy configuration keys for backward compatibility (Azure AD)
        /** Legacy configuration key for Azure AD state time-to-live. */
        protected static final String AAD_STATE_TTL = "aad.state.ttl";
    
        /** Legacy configuration key for Azure AD authority URL. */
        protected static final String AAD_AUTHORITY = "aad.authority";
    
        /** Legacy configuration key for Azure AD tenant ID. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoManager.java

         * @return The SSO authenticator instance, or null if not found
         */
        protected SsoAuthenticator getAuthenticator() {
            String ssoType = getSsoType();
            // Backward compatibility: map legacy "aad" (Azure AD) to "entraid" (Entra ID)
            if ("aad".equals(ssoType)) {
                ssoType = "entraid";
            }
            final String name = ssoType + "Authenticator";
            if (ComponentUtil.hasComponent(name)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. docs/SMB3_IMPLEMENTATION_PLAN.md

    3. **Reliability**: 
       - Persistent handles survive 99% of network interruptions
       - Witness protocol achieves <5 second failover time
    4. **Compatibility**: Works with Windows Server 2016+ and Azure Files
    
    ## Next Steps
    
    1. **Immediate Actions**:
       - Set up Windows Server test environment
       - Create detailed technical specifications for Phase 1
       - Identify and evaluate Java RDMA libraries
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

    import jakarta.servlet.http.HttpSession;
    
    /**
     * Authenticator for SAML 2.0.
     *
     * <p>This authenticator enables Single Sign-On (SSO) using SAML 2.0 protocol
     * with Identity Providers such as Okta, Azure AD, OneLogin, etc.</p>
     *
     * <h2>Required Configuration</h2>
     * <p>Add the following properties to {@code system.properties}:</p>
     * <pre>
     * # Enable SAML SSO
     * sso.type=saml
     *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  5. pom.xml

    				<exclusion>
    					<groupId>com.intellij</groupId>
    					<artifactId>annotations</artifactId>
    				</exclusion>
    			</exclusions>
    		</dependency>
    		<dependency>
    			<groupId>com.microsoft.azure</groupId>
    			<artifactId>msal4j</artifactId>
    			<version>${msal4j.version}</version>
    			<exclusions>
    				<exclusion>
    					<groupId>com.github.stephenc.jcip</groupId>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
Back to top