- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 322 for fessConfig (0.88 sec)
-
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
return Collections.emptyList(); } final FessConfig fessConfig = ComponentUtil.getFessConfig(); return crawlingInfoParamBhv.selectList(cb -> { cb.query().setCrawlingInfoId_Equal(crawlingInfo.getId()); cb.query().addOrderBy_CreatedTime_Asc(); cb.paging(fessConfig.getPageCrawlingInfoParamMaxFetchSizeAsInteger(), 1); }); } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
* @throws InvalidQueryException if geo point format is invalid or parsing fails */ public GeoInfo(final HttpServletRequest request) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String[] geoFields = fessConfig.getQueryGeoFieldsAsArray(); final Map<String, List<QueryBuilder>> geoMap = new HashMap<>(); StreamUtil.stream(request.getParameterMap())Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
/** * Fess configuration containing application settings. * Used to retrieve paging and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DuplicateHostService. * This constructor initializes the service for managing duplicate host configuration operationsRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
public static List<Map<String, Object>> getFileItems(final String prefix) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final List<Map<String, Object>> list = new ArrayList<>(); final List<Map<String, Object>> fileList = new ArrayList<>(); try (final StorageClient client = StorageClientFactory.createClient(fessConfig)) { // Ensure bucket exists on first access
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
/** * The behavior of access token. */ @Resource protected AccessTokenBhv accessTokenBhv; /** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Get the list of access tokens. * @param accessTokenPager The pager for access token. * @return The list of access tokens. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
/** * Configuration properties for Fess application. * Used to access various configuration settings like paging parameters. */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of related queries based on the provided pager parameters. * This method performs a database query with pagination and updates the pager with result information. *Registered: Sat Dec 20 09:19:18 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
*/ @Resource protected DictionaryManager dictionaryManager; /** * Fess configuration settings. */ @Resource 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 updatesRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
*/ public JobLogService() { // Default constructor } /** * Configuration settings for the Fess application. */ @Resource protected FessConfig fessConfig; /** * Time interval in milliseconds after which jobs are considered expired. * Default is 2 hours (2 * 60 * 60 * 1000L). */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
validateApi(body, messages -> {}); final EditBody newBody = new EditBody(); AdminGeneralAction.updateForm(fessConfig, newBody); BeanUtil.copyBeanToBean(body, newBody, CopyOptions::excludeNull); AdminGeneralAction.updateConfig(fessConfig, newBody); return asJson(new ApiResponse().status(Status.OK).result()); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
/** The session manager for handling user sessions. */ @Resource private SessionManager sessionManager; /** The Fess configuration providing application settings. */ @Resource private FessConfig fessConfig; /** The user behavior for database operations on user entities. */ @Resource private UserBhv userBhv; // ===================================================================================Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0)