Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getUserCodeMinLengthAsInteger (0.7 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

        }
    
        public void test_isValidUserCode() {
            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public Integer getUserCodeMinLengthAsInteger() {
                    return 10;
                }
    
                @Override
                public Integer getUserCodeMaxLengthAsInteger() {
                    return 20;
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         * @throws NumberFormatException When the property is not integer.
         */
        Integer getUserCodeMinLengthAsInteger();
    
        /**
         * Get the value for the key 'user.code.max.length'. <br>
         * The value is, e.g. 100 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top