- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getCipher (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} } /** * Gets a cached cipher by name. * @param cipherName The cipher name. * @return The cached cipher. */ public static CachedCipher getCipher(final String cipherName) { return getComponent(cipherName); } /** * Gets the system properties. * @return The dynamic properties. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
} @Test public void test_setters() { final RoleQueryHelper roleQueryHelper = new RoleQueryHelper(); CachedCipher testCipher = new CachedCipher(); roleQueryHelper.setCipher(testCipher); assertEquals(testCipher, roleQueryHelper.cipher); roleQueryHelper.setValueSeparator("||"); assertEquals("||", roleQueryHelper.valueSeparator);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) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
} cookieNameMap.put(cookieName, roleName); } /** * Sets the cached cipher. * @param cipher The cached cipher. */ public void setCipher(final CachedCipher cipher) { this.cipher = cipher; } /** * Sets the value separator. * @param valueSeparator The value separator. */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)