Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getIndexAdminRequiredFields (0.4 sec)

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

        }
    
        public void test_validateIndexRequiredFields() {
            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public String getIndexAdminRequiredFields() {
                    return "aaa,bbb";
                }
            };
    
            HashMap<String, Object> source = new HashMap<>();
            assertFalse(fessConfig.validateIndexRequiredFields(source));
    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

                }
                return new Pair<>(key, value);
            }).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond));
        }
    
        String getIndexAdminRequiredFields();
    
        default boolean validateIndexRequiredFields(final Map<String, Object> source) {
            return invalidIndexRequiredFields(source).isEmpty();
        }
    
    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

         * The value is, e.g. url,title,role,boost <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexAdminRequiredFields();
    
        /**
         * Get the value for the key 'index.search.timeout'. <br>
         * The value is, e.g. 3m <br>
         * comment: timeout
    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