Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for interface (0.22 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to search " + dn, e);
            }
        }
    
        interface SearchConsumer {
            void accept(List<SearchResult> t) throws NamingException;
        }
    
        protected DirContextHolder getDirContext(final Supplier<Hashtable<String, String>> envSupplier) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            this.indexConfigPath = indexConfigPath;
        }
    
        public interface SearchCondition<B> {
            boolean build(B requestBuilder);
        }
    
        public interface SearchResult<T, B, R> {
            T build(B requestBuilder, long execTime, OptionalEntity<R> response);
        }
    
        public interface EntityCreator<T, R, H> {
            T build(R response, H hit);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import org.lastaflute.web.validation.theme.typed.LongTypeValidator;
    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    public interface FessProp {
    
        String API_PING_SEARCH_ENGINE_FIELD_SET = "apiPingSearchEngineFieldSet";
    
        String QUERY_HIGHLIGHT_TERMINAL_CHARS = "queryHighlightTerminalChars";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top