Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setCipher (0.76 sec)

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

        }
    
        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);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  2. 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.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. 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.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top