Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isValidUserCode (0.07 sec)

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

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
            userCode = cipher.encrypt(userCode);
            if (fessConfig.isValidUserCode(userCode)) {
                return userCode;
            }
            return null;
        }
    
        /**
         * Deletes the user code cookie from the client browser.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        String getUserCodePattern();
    
        Integer getUserCodeMinLengthAsInteger();
    
        Integer getUserCodeMaxLengthAsInteger();
    
        default boolean isValidUserCode(final String userCode) {
            if (userCode == null) {
                return false;
            }
    
            final int length = userCode.length();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
Back to top