Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for processType (1.24 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsPathMapping.java

            this.createdTime = value;
        }
    
        public String getProcessType() {
            checkSpecifiedProperty("processType");
            return convertEmptyToNull(processType);
        }
    
        public void setProcessType(String value) {
            registerModifiedProperty("processType");
            this.processType = value;
        }
    
        public String getRegex() {
            checkSpecifiedProperty("regex");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_edit.jsp

                                        <label for="processType" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.processType"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="processType"/>
                                            <la:select styleId="processType" property="processType"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Feb 28 06:09:47 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_details.jsp

                                        <tr>
                                            <th><la:message key="labels.processType"/></th>
                                            <td><c:if test="${processType=='C'}">
                                                <la:message key="labels.pathmap_pt_crawling"/>
                                            </c:if> <c:if test="${processType=='D'}">
                                                <la:message key="labels.pathmap_pt_displaying"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Feb 28 06:09:47 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/exentity/PathMapping.java

        }
    
        @Override
        public String toString() {
            return "PathMapping [regexPattern=" + regexPattern + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", processType="
                    + processType + ", regex=" + regex + ", replacement=" + replacement + ", sortOrder=" + sortOrder + ", userAgent="
                    + userAgent + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta=" + docMeta + "]";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_path_mapping.json

          "path_mapping" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "processType" : {
                "type" : "keyword"
              },
              "regex" : {
                "type" : "keyword"
              },
              "replacement" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.path_mapping/path_mapping.json

    {
        "properties": {
          "regex": {
            "type": "keyword"
          },
          "replacement": {
            "type": "keyword"
          },
          "processType": {
            "type": "keyword"
          },
          "sortOrder": {
            "type": "integer"
          },
          "userAgent": {
            "type": "keyword"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 531 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/PathMapPager.java

        public String id;
    
        /** The regex pattern. */
        public String regex;
    
        /** The replacement string. */
        public String replacement;
    
        /** The process type. */
        public String processType;
    
        /** The sort order. */
        public String sortOrder;
    
        /** The creator. */
        public String createdBy;
    
        /** The creation time. */
        public String createdTime;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

         * The replacement pattern for matched paths.
         */
        @Size(max = 1000)
        public String replacement;
    
        /**
         * The processing type for path mapping.
         */
        @Required
        public String processType;
    
        /**
         * The sort order for this path mapping (0-2147483647).
         */
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer sortOrder;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsPathMappingCB.java

                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnProcessType() {
                doColumn("processType");
            }
    
            public void columnRegex() {
                doColumn("regex");
            }
    
            public void columnReplacement() {
                doColumn("replacement");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/admin/PathMapTests.java

            requestBody.put("replacement", "replacement" + id);
            requestBody.put("process_type", "C");
            requestBody.put("sort_order", id);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("process_type", "D");
            return updateMap;
        }
    
        @Test
        void crudTest() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top