Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setConfigId (0.2 sec)

  1. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            }).orElseGet(() -> {
                final FailureUrl entity = new FailureUrl();
                entity.setErrorCount(1);
                entity.setUrl(url);
                if (crawlingConfig != null) {
                    entity.setConfigId(crawlingConfig.getConfigId());
                }
                return entity;
            });
    
            failureUrl.setErrorName(errorName);
            failureUrl.setErrorLog(getStackTrace(e));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 24 01:20:42 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

        public String getConfigId() {
            checkSpecifiedProperty("configId");
            return convertEmptyToNull(configId);
        }
    
        public void setConfigId(String value) {
            registerModifiedProperty("configId");
            this.configId = value;
        }
    
        public Integer getErrorCount() {
            checkSpecifiedProperty("errorCount");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((FailureUrl) et).getConfigId(), (et, vl) -> ((FailureUrl) et).setConfigId(DfTypeUtil.toString(vl)),
                    "configId");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorCount(), (et, vl) -> ((FailureUrl) et).setErrorCount(DfTypeUtil.toInteger(vl)),
                    "errorCount");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

        protected <RESULT extends FailureUrl> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) {
            try {
                final RESULT result = entityType.newInstance();
                result.setConfigId(DfTypeUtil.toString(source.get("configId")));
                result.setErrorCount(DfTypeUtil.toInteger(source.get("errorCount")));
                result.setErrorLog(DfTypeUtil.toString(source.get("errorLog")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top