Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for setIncludedPaths (0.13 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsLabelType.java

        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
            this.includedPaths = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            if (logger.isDebugEnabled()) {
                logger.debug("End Element: {}", qName);
            }
            if (GOOD_URLS.equalsIgnoreCase(qName)) {
                if (labelType != null) {
                    labelType.setIncludedPaths(parseFilterPaths(textBuf.toString(), true, true));
                } else if (GLOBALPARAMS.equalsIgnoreCase(tagQueue.get(tagQueue.size() - 2))) {
                    globalParams.put(GOOD_URLS, textBuf.toString());
                }
    Registered: Thu Oct 31 13:40:30 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/bsbhv/BsFileConfigBhv.java

                result.setExcludedPaths(DfTypeUtil.toString(source.get("excludedPaths")));
                result.setIncludedDocPaths(DfTypeUtil.toString(source.get("includedDocPaths")));
                result.setIncludedPaths(DfTypeUtil.toString(source.get("includedPaths")));
                result.setIntervalTime(DfTypeUtil.toInteger(source.get("intervalTime")));
                result.setMaxAccessCount(DfTypeUtil.toLong(source.get("maxAccessCount")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    fConfig.setIncludedDocPaths(getDefaultString("default.config.file.includedDocPaths", StringUtil.EMPTY));
                    fConfig.setIncludedPaths(getDefaultString("default.config.file.includedPaths", StringUtil.EMPTY));
                    fConfig.setIntervalTime(getDefaultInteger("default.config.file.intervalTime", Constants.DEFAULT_INTERVAL_TIME_FOR_FS));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java

                    "excludedPaths");
            setupEpg(_epgMap, et -> ((LabelType) et).getIncludedPaths(), (et, vl) -> ((LabelType) et).setIncludedPaths(DfTypeUtil.toString(vl)),
                    "includedPaths");
            setupEpg(_epgMap, et -> ((LabelType) et).getName(), (et, vl) -> ((LabelType) et).setName(DfTypeUtil.toString(vl)), "name");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java

                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setExcludedPaths(DfTypeUtil.toString(source.get("excludedPaths")));
                result.setIncludedPaths(DfTypeUtil.toString(source.get("includedPaths")));
                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setPermissions(toStringArray(source.get("permissions")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
            this.includedPaths = value;
        }
    
        public Integer getIntervalTime() {
            checkSpecifiedProperty("intervalTime");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java

                    (et, vl) -> ((FileConfig) et).setIncludedDocPaths(DfTypeUtil.toString(vl)), "includedDocPaths");
            setupEpg(_epgMap, et -> ((FileConfig) et).getIncludedPaths(),
                    (et, vl) -> ((FileConfig) et).setIncludedPaths(DfTypeUtil.toString(vl)), "includedPaths");
            setupEpg(_epgMap, et -> ((FileConfig) et).getIntervalTime(),
                    (et, vl) -> ((FileConfig) et).setIntervalTime(DfTypeUtil.toInteger(vl)), "intervalTime");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top