- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 64 for Crawling (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
/** * The unique identifier of the crawling information entry being edited. * This is a required field for identifying which crawling info to update. */ @Required @Size(max = 1000) public String id; /** * The session identifier of the crawling session. * This is a required field that identifies the specific crawling session. * Maximum length is 20 characters. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
/** * Exception thrown when an error occurs during data store crawling operations. * This exception provides information about the URL where the error occurred * and whether the crawling process should be aborted. */ public class DataStoreCrawlingException extends CrawlingAccessException { private static final long serialVersionUID = 1L; /** * The URL where the crawling error occurred. */ private final String url;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
@CustomSize(maxKey = "form.admin.max.input.size") public String paths; /** The paths to include during crawling (pattern-based). */ @CustomSize(maxKey = "form.admin.max.input.size") public String includedPaths; /** The paths to exclude during crawling (pattern-based). */ @CustomSize(maxKey = "form.admin.max.input.size") public String excludedPaths;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for crawling information administration. * Extends BaseSearchBody with crawling information-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The crawling session ID to search for. */ public String sessionId; /** * Default constructor for SearchBody. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for web crawling configuration administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Name of the web crawling configuration */ public String name; /** URLs to crawl */ public String urls;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
.status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific crawling info log by ID. * * @param id the ID of the crawling info log to retrieve * @return JSON response containing the crawling info log data */ // GET /api/admin/crawlinginfo/log/{id} @Execute public JsonResponse<ApiResult> get$log(final String id) {
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/fess/crawler/service/FessUrlQueueService.java
} /** * Fetches URL queue list for the specified session with configurable ordering strategy. * Supports sequential (default) and random ordering based on crawling configuration. * * @param sessionId the crawling session identifier * @return list of URL queue entries for processing */ @Override protected List<OpenSearchUrlQueue> fetchUrlQueueList(final String sessionId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
/** * Form class for crawling configuration wizard in the admin interface. * Contains validation constraints for creating new crawling configurations. */ public class CrawlingConfigForm { /** * Creates a new form instance. */ public CrawlingConfigForm() { // Default constructor } /** * Name of the crawling configuration. */ @Required
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/app/web/admin/crawlinginfo/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.crawlinginfo; /** * The search form for Crawling Info. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The session ID field for searching crawling information. */ public String sessionId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 952 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
private int currentPageNumber; /** * Crawling information ID. */ public String id; /** * Session ID for the crawling session. */ public String sessionId; /** * Creation time of the crawling information. */ public String createdTime; /** * Clears all pagination state and crawling information fields.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0)