- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for storeSearchParameters (0.07 seconds)
-
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
@Test public void test_store_and_getSearchParameters() { getMockRequest().setParameter("q", "test"); getMockRequest().setParameter("lang", new String[] { "en", "ja" }); searchHelper.storeSearchParameters(); Cookie[] cookies = getMockResponse().getCookies(); boolean found = false; for (Cookie cookie : cookies) { if ("FESS_SEARCH_PARAM".equals(cookie.getName())) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* * This method serializes the current request parameters, compresses them using GZIP, * encodes them with Base64, and stores them in a secure HTTP cookie. */ public void storeSearchParameters() { LaRequestUtil.getOptionalRequest().ifPresent(req -> { final FessConfig fessConfig = ComponentUtil.getFessConfig();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 36.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* for restoration after successful authentication. * * @return HTML response that redirects to the login page */ protected HtmlResponse redirectToLogin() { searchHelper.storeSearchParameters(); return systemHelper.getRedirectResponseToLogin(redirect(SsoAction.class)); } /** * Redirects the user to the root path of the application. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0)