- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setEncryptedCookieValue (0.1 seconds)
-
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
this.cookieKey = cookieKey; } /** * Sets whether the cookie value is encrypted. * @param encryptedCookieValue Whether the cookie value is encrypted. */ public void setEncryptedCookieValue(final boolean encryptedCookieValue) { this.encryptedCookieValue = encryptedCookieValue; } /** * Sets the maximum age of the role information in seconds.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) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
assertFalse(roleQueryHelper.encryptedHeaderValue); roleQueryHelper.setCookieKey("cookie"); assertEquals("cookie", roleQueryHelper.cookieKey); roleQueryHelper.setEncryptedCookieValue(false); assertFalse(roleQueryHelper.encryptedCookieValue); roleQueryHelper.setMaxAge(300); assertEquals(300, roleQueryHelper.maxAge); } @Test
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)