- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for CrawlingInfoService (0.09 seconds)
-
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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java
/** * Unit tests for {@link CrawlingInfoService}. * Tests crawling info management and CSV import/export functionality. */ public class CrawlingInfoServiceTest extends UnitFessTestCase { private CrawlingInfoService crawlingInfoService; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); crawlingInfoService = new CrawlingInfoService(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 6.1K bytes - Click Count (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;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 32.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
} @Test public void test_store_create() { final String sessionId = "test-session-123"; // Mock CrawlingInfoService ComponentUtil.register(new CrawlingInfoService() { private CrawlingInfo storedInfo; private List<CrawlingInfoParam> storedParams; @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (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() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (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); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 15.2K bytes - Click Count (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;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 6.1K bytes - Click Count (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);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (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;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 11K bytes - Click Count (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. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0)