Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setCrawlingInfoId (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsCrawlingInfoParam.java

        public String getCrawlingInfoId() {
            checkSpecifiedProperty("crawlingInfoId");
            return convertEmptyToNull(crawlingInfoId);
        }
    
        public void setCrawlingInfoId(String value) {
            registerModifiedProperty("crawlingInfoId");
            this.crawlingInfoId = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCrawlingInfoId(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCrawlingInfoId(DfTypeUtil.toString(vl)), "crawlingInfoId");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCreatedTime(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java

            assertNull(param.getKey());
            assertNull(param.getValue());
            assertNull(param.getCreatedTime());
    
            param.setId("param-id");
            param.setCrawlingInfoId("crawling-info-id");
            param.setKey("docs_processed");
            param.setValue("1000");
            param.setCreatedTime(777777777L);
    
            assertEquals("param-id", param.getId());
    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)
Back to Top