- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 85 for retrieve (0.04 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
import jakarta.annotation.PostConstruct; /** * Helper class for managing file type mappings based on MIME types. * This class provides functionality to map MIME types to file types and * retrieve appropriate file type classifications for documents during indexing. * * The mappings are loaded from configuration and can be dynamically modified * at runtime. When a MIME type is not found in the mapping, a default value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0)