Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for HttpSession (0.05 seconds)

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

    import com.nimbusds.openid.connect.sdk.AuthenticationSuccessResponse;
    
    import jakarta.annotation.PostConstruct;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Microsoft Entra ID SSO authenticator implementation.
     * Handles OAuth2/OpenID Connect authentication flow with Entra ID.
     */
    public class EntraIdAuthenticator implements SsoAuthenticator {
    
    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)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    updateHighlightInfo(highlightInfo, width);
                    final HttpSession session = req.getSession(false);
                    if (session != null) {
                        session.setAttribute(SCREEN_WIDTH, width);
                    }
                } else {
                    final HttpSession session = req.getSession(false);
                    if (session != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

    import org.lastaflute.web.LastaWebKey;
    import org.lastaflute.web.util.LaRequestUtil;
    
    import com.fasterxml.jackson.databind.JsonNode;
    import com.fasterxml.jackson.databind.ObjectMapper;
    
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Abstract base class for LLM client implementations.
     *
     * Provides shared infrastructure (HTTP client, availability checking) and
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top