Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for scriptResult (0.19 sec)

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

            this.scriptData = value;
        }
    
        public String getScriptResult() {
            checkSpecifiedProperty("scriptResult");
            return convertEmptyToNull(scriptResult);
        }
    
        public void setScriptResult(String value) {
            registerModifiedProperty("scriptResult");
            this.scriptResult = value;
        }
    
        public String getScriptType() {
            checkSpecifiedProperty("scriptType");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        public String scriptData;
    
        public String scriptResult;
    
        @Required
        public String startTime;
    
        public String endTime;
    
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
            scriptData = null;
            scriptResult = null;
            startTime = null;
            endTime = null;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

        public String toString() {
            return "JobLog [scheduledJob=" + scheduledJob + ", endTime=" + endTime + ", jobName=" + jobName + ", jobStatus=" + jobStatus
                    + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
                    + startTime + ", target=" + target + ", docMeta=" + docMeta + "]";
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess_config.job_log/job_log.json

          },
          "target": {
            "type": "keyword"
          },
          "scriptType": {
            "type": "keyword"
          },
          "scriptData": {
            "type": "keyword"
          },
          "scriptResult": {
            "type": "keyword"
          },
          "lastUpdated": {
            "type": "long"
          },
          "startTime": {
            "type": "long"
          },
          "endTime": {
            "type": "long"
          }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 524 bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_job_log.json

                "type" : "keyword"
              },
              "lastUpdated" : {
                "type" : "long"
              },
              "scriptData" : {
                "type" : "keyword"
              },
              "scriptResult" : {
                "type" : "keyword"
              },
              "scriptType" : {
                "type" : "keyword"
              },
              "startTime" : {
                "type" : "long"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

                result.setLastUpdated(DfTypeUtil.toLong(source.get("lastUpdated")));
                result.setScriptData(DfTypeUtil.toString(source.get("scriptData")));
                result.setScriptResult(DfTypeUtil.toString(source.get("scriptResult")));
                result.setScriptType(DfTypeUtil.toString(source.get("scriptType")));
                result.setStartTime(DfTypeUtil.toLong(source.get("startTime")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsJobLogCB.java

                doColumn("lastUpdated");
            }
    
            public void columnScriptData() {
                doColumn("scriptData");
            }
    
            public void columnScriptResult() {
                doColumn("scriptResult");
            }
    
            public void columnScriptType() {
                doColumn("scriptType");
            }
    
            public void columnStartTime() {
                doColumn("startTime");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
Back to top