- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for CrawlingInfoService (0.12 sec)
-
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* including session management, cleanup operations, and CSV import/export functionality. */ public class CrawlingInfoService { private static final Logger logger = LogManager.getLogger(CrawlingInfoService.class); /** * Creates a new instance of CrawlingInfoService. */ public CrawlingInfoService() { } /** * Behavior handler for CrawlingInfoParam entities.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
final int[] jobLogDeletedDays = { 0 }; final int[] userInfoDeletedDays = { 0 }; final long[] expectedTime = { 0 }; // Create mock services CrawlingInfoService crawlingInfoService = new CrawlingInfoService() { @Override public void deleteBefore(long time) { deleteCrawlingInfoCalled[0] = true; crawlingInfoDeletedBeforeTime[0] = time;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
} public void test_store_create() { final String sessionId = "test-session-123"; // Mock CrawlingInfoService ComponentUtil.register(new CrawlingInfoService() { private CrawlingInfo storedInfo; private List<CrawlingInfoParam> storedParams; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
crawler.pathMappingService = pathMappingService; crawlingInfoService = new CrawlingInfoService() { @Override public void deleteSessionIdsBefore(String sessionId, String name, long currentTime) { // Mock implementation } }; crawler.crawlingInfoService = crawlingInfoService; crawlingInfoHelper = new CrawlingInfoHelper() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
*/ protected int maxSessionIdsInList; /** * Retrieves the CrawlingInfoService component instance. * * @return the CrawlingInfoService component for managing crawling information */ protected CrawlingInfoService getCrawlingInfoService() { return ComponentUtil.getComponent(CrawlingInfoService.class); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
// Attribute // ========= @Resource private CrawlingInfoService crawlingInfoService; @Resource private CrawlingInfoPager crawlingInfoPager; /** The process helper. */ @Resource protected ProcessHelper processHelper;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
// Attribute // ========= @Resource private CrawlingInfoService crawlingInfoService; /** Helper for managing crawling processes and session information */ @Resource protected ProcessHelper processHelper;
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/job/PurgeLogJob.java
* - Updates job log status * * @return a string containing the execution result and any error messages */ public String execute() { final CrawlingInfoService crawlingInfoService = ComponentUtil.getComponent(CrawlingInfoService.class); final SearchLogService searchLogService = ComponentUtil.getComponent(SearchLogService.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
@Resource protected PathMappingService pathMappingService; /** Injected service for managing crawling session information. */ @Resource protected CrawlingInfoService crawlingInfoService; /** * Adds an error message to the error queue for later processing. * This method is thread-safe and can be called from multiple crawler threads. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0)