Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getIncludedDocUrls (0.63 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            if (includedDocUrlPatterns == null) {
                if (StringUtil.isNotBlank(getIncludedDocUrls())) {
                    final List<Pattern> urlPatterList = new ArrayList<>();
                    final String[] urls = getIncludedDocUrls().split("[\r\n]");
                    for (final String u : urls) {
                        final String v = systemHelper.normalizeConfigPath(u);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

        }
    
        public void setExcludedUrls(String value) {
            registerModifiedProperty("excludedUrls");
            this.excludedUrls = value;
        }
    
        public String getIncludedDocUrls() {
            checkSpecifiedProperty("includedDocUrls");
            return convertEmptyToNull(includedDocUrls);
        }
    
        public void setIncludedDocUrls(String value) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java

            setupEpg(_epgMap, et -> ((WebConfig) et).getExcludedUrls(), (et, vl) -> ((WebConfig) et).setExcludedUrls(DfTypeUtil.toString(vl)),
                    "excludedUrls");
            setupEpg(_epgMap, et -> ((WebConfig) et).getIncludedDocUrls(),
                    (et, vl) -> ((WebConfig) et).setIncludedDocUrls(DfTypeUtil.toString(vl)), "includedDocUrls");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.4K bytes
    - Viewed (0)
Back to top