Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setCookieKey (0.09 seconds)

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

            this.encryptedHeaderValue = encryptedHeaderValue;
        }
    
        /**
         * Sets the cookie key.
         * @param cookieKey The cookie key.
         */
        public void setCookieKey(final String cookieKey) {
            this.cookieKey = cookieKey;
        }
    
        /**
         * Sets whether the cookie value is encrypted.
         * @param encryptedCookieValue Whether the cookie value is encrypted.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            assertEquals("header", roleQueryHelper.headerKey);
    
            roleQueryHelper.setEncryptedHeaderValue(false);
            assertFalse(roleQueryHelper.encryptedHeaderValue);
    
            roleQueryHelper.setCookieKey("cookie");
            assertEquals("cookie", roleQueryHelper.cookieKey);
    
            roleQueryHelper.setEncryptedCookieValue(false);
            assertFalse(roleQueryHelper.encryptedCookieValue);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 28.8K bytes
    - Click Count (0)
Back to Top