Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCookieSearchParameterName (0.15 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                            return;
                        }
                        LaResponseUtil.getOptionalResponse().ifPresent(res -> {
                            final Cookie cookie = new Cookie(fessConfig.getCookieSearchParameterName(), encoded);
                            cookie.setHttpOnly(Constants.TRUE.equalsIgnoreCase(fessConfig.getCookieSearchParameterHttpOnly()));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            }
    
            @Override
            public Integer getCookieSearchParameterMaxLengthAsInteger() {
                return 4096;
            }
    
            @Override
            public String getCookieSearchParameterName() {
                return "FESS_SEARCH_PARAM";
            }
    
            @Override
            public String getCookieSearchParameterHttpOnly() {
                return "true";
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Cookie name used to store encoded search parameters before SSO login.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCookieSearchParameterName();
    
        /**
         * Get the value for the key 'cookie.search.parameter.http_only'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to set HttpOnly attribute to the search parameter cookie.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top