Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for crawlingInfoId (0.24 sec)

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

        public String getCrawlingInfoId() {
            checkSpecifiedProperty("crawlingInfoId");
            return convertEmptyToNull(crawlingInfoId);
        }
    
        public void setCrawlingInfoId(String value) {
            registerModifiedProperty("crawlingInfoId");
            this.crawlingInfoId = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsCrawlingInfoParamCQ.java

        }
    
        public void setCrawlingInfoId_Equal(String crawlingInfoId) {
            setCrawlingInfoId_Term(crawlingInfoId, null);
        }
    
        public void setCrawlingInfoId_Equal(String crawlingInfoId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setCrawlingInfoId_Term(crawlingInfoId, opLambda);
        }
    
        public void setCrawlingInfoId_Term(String crawlingInfoId) {
            setCrawlingInfoId_Term(crawlingInfoId, null);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 36K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

        //                                                                         ===========
        protected final ColumnInfo _columnCrawlingInfoId = cci("crawlingInfoId", "crawlingInfoId", null, null, String.class, "crawlingInfoId",
                null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingInfoParam.java

                return getKey();
            }
            return message;
        }
    
        @Override
        public String toString() {
            return "CrawlingInfoParam [crawlingInfo=" + crawlingInfo + ", crawlingInfoId=" + crawlingInfoId + ", createdTime=" + createdTime
                    + ", key=" + key + ", value=" + value + ", docMeta=" + docMeta + "]";
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsCrawlingInfoParamCA.java

            setCrawlingInfoId_Terms("crawlingInfoId", opLambda, null);
        }
    
        public void setCrawlingInfoId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda,
                OperatorCall<BsCrawlingInfoParamCA> aggsLambda) {
            setCrawlingInfoId_Terms("crawlingInfoId", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.crawling_info_param/crawling_info_param.json

    {
        "properties": {
          "crawlingInfoId": {
            "type": "keyword"
          },
          "key": {
            "type": "keyword"
          },
          "value": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          }
        }
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 247 bytes
    - Viewed (0)
  7. src/main/config/es/fess_config_crawling_info_param.json

    {
      "fess_config.crawling_info_param" : {
        "aliases" : { },
        "mappings" : {
          "crawling_info_param" : {
            "properties" : {
              "crawlingInfoId" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "key" : {
                "type" : "keyword"
              },
              "value" : {
                "type" : "keyword"
              }
            }
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 775 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                return StringUtil.EMPTY; // empty
            }
        }
    
        public Map<String, Object> processRequest(final CrawlingConfig crawlingConfig, final String crawlingInfoId, final String url) {
            if (StringUtil.isBlank(crawlingInfoId)) {
                throw new CrawlingAccessException("sessionId is null.");
            }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsCrawlingInfoParamCB.java

                columnList.add(name);
            }
    
            public void columnId() {
                doColumn("_id");
            }
    
            public void columnCrawlingInfoId() {
                doColumn("crawlingInfoId");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnKey() {
                doColumn("key");
            }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setCrawlingInfoId(DfTypeUtil.toString(source.get("crawlingInfoId")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setKey(DfTypeUtil.toString(source.get("key")));
                result.setValue(DfTypeUtil.toString(source.get("value")));
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
Back to top