Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for retrieve (0.04 sec)

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

            }
            return configId.substring(1);
        }
    
        /**
         * Retrieves a crawling configuration by its config ID.
         * This method uses caching to improve performance and automatically determines
         * the configuration type and delegates to the appropriate service.
         *
         * @param configId the configuration ID to retrieve
         * @return the CrawlingConfig object or null if not found or on error
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

            return relatedQueryList;
        }
    
        /**
         * Retrieves a specific related query by its unique identifier.
         *
         * @param id the unique identifier of the related query to retrieve
         * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of character mapping items from the specified dictionary.
         * <p>
         * This method fetches character mapping items with pagination support and updates
         * the pager with the current page information including total count and page ranges.
         * </p>
         *
         * @param dictId the dictionary ID to retrieve character mappings from
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/BeanDesc.java

     * </pre>
     * <p>
     * From the obtained {@link BeanDesc}, you can retrieve metadata of the properties, fields, constructors, and methods of the target JavaBeans.
     * </p>
     *
     * <pre>
     * for (PropertyDesc propertyDesc : beanDesc.getPropertyDescs()) {
     *     propertyDesc.getValue(foo); // Retrieve the value of Foo's property
     * }
     *
     * for (FieldDesc fieldDesc : beanDesc.getFieldDescs()) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

                return (List<StemmerOverrideItem>) stemmerOvberrideList;
            }).orElse(Collections.emptyList());
        }
    
        /**
         * Retrieves the stemmer override dictionary file by ID.
         *
         * @param dictId The ID of the stemmer override dictionary to retrieve
         * @return An OptionalEntity containing the stemmer override file if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

            super();
        }
    
        private static final Logger logger = LogManager.getLogger(ApiAdminDictProtwordsAction.class);
    
        @Resource
        private ProtwordsService protwordsService;
    
        /**
         * Retrieve list of protected words entries for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param body search criteria and paging parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for thumbnail request parameters.
     * Contains the document ID and query parameters needed to retrieve thumbnail images.
     */
    public class ThumbnailForm {
    
        /**
         * The document ID for which to retrieve the thumbnail.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * The query ID associated with the search request.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

            } catch (final IOException e) {
                throw new DictionaryException("Failed to access dictionaries", e);
            }
        }
    
        /**
         * Retrieves a specific dictionary file by its ID.
         *
         * @param id the unique identifier of the dictionary file to retrieve
         * @return an OptionalEntity containing the dictionary file if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

            return dataConfigBhv.selectByPK(id);
        }
    
        /**
         * Retrieves a data configuration by its name.
         *
         * <p>If multiple configurations exist with the same name, returns the first one
         * ordered by sort order ascending.</p>
         *
         * @param name the name of the data configuration to retrieve
         * @return an OptionalEntity containing the DataConfig if found, empty otherwise
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Helper class for managing related query configurations.
     * This class provides functionality to load, cache, and retrieve related queries
     * based on search terms and virtual hosts. Related queries are used to suggest
     * alternative or supplementary search terms to improve search results.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top