Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setCipher (0.13 sec)

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

            if (cookieNameMap == null) {
                cookieNameMap = new HashMap<>();
            }
            cookieNameMap.put(cookieName, roleName);
        }
    
        public void setCipher(final CachedCipher cipher) {
            this.cipher = cipher;
        }
    
        public void setValueSeparator(final String valueSeparator) {
            this.valueSeparator = valueSeparator;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            try {
                initProcesses.forEach(action);
            } finally {
                initProcesses.clear();
            }
        }
    
        public static CachedCipher getCipher(final String cipherName) {
            return getComponent(cipherName);
        }
    
        public static DynamicProperties getSystemProperties() {
            return getComponent(CRAWLER_PROPERTIES);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top