- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for encryptedCookieValue (0.07 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/main/resources/fess.xml
<property name="headerKey">"fessRoles"</property> <property name="encryptedHeaderValue">true</property> <property name="cookieKey">"fessRoles"</property> <property name="encryptedCookieValue">true</property> <property name="cipher"> <component class="org.codelibs.core.crypto.CachedCipher"> <property name="key">"1234567890123456"</property> </component> </property>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
roleQueryHelperImpl.encryptedCookieValue = true; cookie = new Cookie("fess2x", "fail"); getMockRequest().addCookie(cookie); roleSet = buildByCookie(roleQueryHelperImpl, getMockRequest()); assertEquals(0, roleSet.size()); roleQueryHelperImpl.cookieKey = "fess3"; roleQueryHelperImpl.encryptedCookieValue = false;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)