Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Lax (0.01 sec)

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

            public Integer getCookieSearchParameterMaxAgeAsInteger() {
                return 3600;
            }
    
            @Override
            public String getCookieSearchParameterSameSite() {
                return "Lax";
            }
    
            @Override
            public boolean isSearchLog() {
                return true;
            }
    
            @Override
            public boolean isUserFavorite() {
                return true;
    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/resources/fess_config.properties

    # Path attribute for the search parameter cookie. Typically set to "/" or the context path of the app.
    cookie.search.parameter.path=/
    # SameSite attribute for the search parameter cookie. Valid values: Lax, Strict, None
    cookie.search.parameter.same_site=Lax
    
    # ----------------------------------------------------------
    #                                                     Paging
    #                                                     ------
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getCookieSearchParameterPath();
    
        /**
         * Get the value for the key 'cookie.search.parameter.same_site'. <br>
         * The value is, e.g. Lax <br>
         * comment: SameSite attribute for the search parameter cookie. Valid values: Lax, Strict, None
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCookieSearchParameterSameSite();
    
    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