- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 322 for fessConfig (1.77 sec)
-
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/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/SearchLogService.java
/** System helper for date/time operations. */ @Resource private SystemHelper systemHelper; /** Fess configuration settings. */ @Resource protected FessConfig fessConfig; /** * Default constructor for creating a new SearchLogService instance. */ public SearchLogService() { // Default constructor } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K 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/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/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/UserService.java
/** Login assistance for authentication operations */ @Resource protected FessLoginAssist fessLoginAssist; /** Fess configuration for system settings */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of users based on the provided pager criteria. * Updates the pager with pagination information including total count and page navigation. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K 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)