- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for HttpSession (0.16 sec)
-
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
@Override public StringBuffer getRequestURL() { return null; } @Override public HttpSession getSession(boolean create) { return null; } @Override public HttpSession getSession() { return null; } @Override public String changeSessionId() { return null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
messages.addErrorsNoUserForChangingPassword(GLOBAL); }, validationErrorLambda); return null; }); } private OptionalThing<HttpSession> getSession() { final HttpSession session = request.getSession(false); if (session != null) { return OptionalEntity.of(session); } return OptionalEntity.empty(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
private FilterChain filterChain; @Mock private HttpSession httpSession; @Mock private ServletOutputStream servletOutputStream; @BeforeEach void setUp() throws Exception { filter = new NtlmHttpFilter(); // Setup lenient stubs for common mock interactions lenient().when(request.getSession()).thenReturn(httpSession);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
return; } final HttpSession ssn = request.getSession(); ssn.setAttribute("NtlmHttpAuth", ntlm); ssn.setAttribute("ntlmdomain", ntlm.getDomain()); ssn.setAttribute("ntlmuser", ntlm.getUsername()); } else { final HttpSession ssn = request.getSession(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/http/NetworkExplorerTest.java
import jakarta.servlet.ServletOutputStream; import jakarta.servlet.WriteListener; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; import jcifs.SmbResourceLocator; import jcifs.context.SingletonContext; import jcifs.smb.NtlmPasswordAuthentication; import jcifs.smb.SmbFile; /** * Unit tests for the NetworkExplorer servlet.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
import org.lastaflute.web.response.HtmlResponse; import org.lastaflute.web.response.render.RenderData; import org.lastaflute.web.util.LaRequestUtil; import jakarta.annotation.Resource; import jakarta.servlet.http.HttpSession; /** * The action for search operations. */ public class SearchAction extends FessSearchAction { /** * Default constructor. */ public SearchAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; import jcifs.smb1.Config; import jcifs.smb1.UniAddress; import jcifs.smb1.smb1.NtStatus; import jcifs.smb1.smb1.NtlmChallenge; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.smb1.SmbAuthException;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
public String getServletPath() { return ""; } @Override public jakarta.servlet.http.HttpSession getSession(boolean create) { return null; } @Override public jakarta.servlet.http.HttpSession getSession() { return null; } @Override public String changeSessionId() { return null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; import jcifs.Address; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.Config; import jcifs.config.PropertyConfiguration; import jcifs.context.BaseContext; import jcifs.netbios.UniAddress;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
return; } final HttpSession ssn = request.getSession(); ssn.setAttribute("NtlmHttpAuth", ntlm); ssn.setAttribute("ntlmdomain", ntlm.getUserDomain()); ssn.setAttribute("ntlmuser", ntlm.getUsername()); } else { final HttpSession ssn = request.getSession(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1)