Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getErrorName (0.24 sec)

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

            return convertEmptyToNull(errorLog);
        }
    
        public void setErrorLog(String value) {
            registerModifiedProperty("errorLog");
            this.errorLog = value;
        }
    
        public String getErrorName() {
            checkSpecifiedProperty("errorName");
            return convertEmptyToNull(errorName);
        }
    
        public void setErrorName(String value) {
            registerModifiedProperty("errorName");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

            setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorLog(), (et, vl) -> ((FailureUrl) et).setErrorLog(DfTypeUtil.toString(vl)),
                    "errorLog");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorName(), (et, vl) -> ((FailureUrl) et).setErrorName(DfTypeUtil.toString(vl)),
                    "errorName");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getLastAccessTime(),
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            }
            final List<String> urlList = new ArrayList<>();
            for (final FailureUrl failureUrl : list) {
                if (pattern != null) {
                    if (!pattern.matcher(failureUrl.getErrorName()).matches()) {
                        urlList.add(failureUrl.getUrl());
                    }
                } else {
                    urlList.add(failureUrl.getUrl());
                }
            }
            return urlList;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
Back to top