Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for storeSearchParameters (0.07 sec)

  1. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

        }
    
        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())) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. 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.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. 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();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
Back to top