Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getIncludedUrls (0.22 sec)

  1. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                ((FessIntervalController) crawler.getIntervalController()).setDelayMillisForWaitingNewUrl(intervalTime);
    
                final String includedUrlsStr = webConfig.getIncludedUrls() != null ? webConfig.getIncludedUrls() : StringUtil.EMPTY;
                final String excludedUrlsStr = webConfig.getExcludedUrls() != null ? webConfig.getExcludedUrls() : StringUtil.EMPTY;
    
                // num of threads
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

        }
    
        public void setIncludedDocUrls(String value) {
            registerModifiedProperty("includedDocUrls");
            this.includedDocUrls = value;
        }
    
        public String getIncludedUrls() {
            checkSpecifiedProperty("includedUrls");
            return convertEmptyToNull(includedUrls);
        }
    
        public void setIncludedUrls(String value) {
            registerModifiedProperty("includedUrls");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java

            setupEpg(_epgMap, et -> ((WebConfig) et).getIncludedDocUrls(),
                    (et, vl) -> ((WebConfig) et).setIncludedDocUrls(DfTypeUtil.toString(vl)), "includedDocUrls");
            setupEpg(_epgMap, et -> ((WebConfig) et).getIncludedUrls(), (et, vl) -> ((WebConfig) et).setIncludedUrls(DfTypeUtil.toString(vl)),
                    "includedUrls");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top