Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for regularName (0.06 sec)

  1. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost_details.jsp

                                            <th style="width: 25%"><la:message
                                                    key="labels.regular_name"/></th>
                                            <td>${f:h(regularName)}<la:hidden
                                                    property="regularName"/></td>
                                        </tr>
                                        <tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDuplicateHost.java

            this.duplicateHostName = value;
        }
    
        public String getRegularName() {
            checkSpecifiedProperty("regularName");
            return convertEmptyToNull(regularName);
        }
    
        public void setRegularName(String value) {
            registerModifiedProperty("regularName");
            this.regularName = value;
        }
    
        public Integer getSortOrder() {
            checkSpecifiedProperty("sortOrder");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost.jsp

                                            <div class="col-sm-10">
                                                <la:text styleId="regularName" property="regularName"
                                                         styleClass="form-control"/>
                                            </div>
                                        </div>
                                        <div class="form-group row">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost_edit.jsp

                                        <label for="regularName" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.regular_name"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="regularName"/>
                                            <la:text styleId="regularName" property="regularName"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/DuplicateHost.java

        }
    
        @Override
        public String toString() {
            return "DuplicateHost [createdBy=" + createdBy + ", createdTime=" + createdTime + ", duplicateHostName=" + duplicateHostName
                    + ", regularName=" + regularName + ", sortOrder=" + sortOrder + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime
                    + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.duplicate_host/duplicate_host.json

    {
        "properties": {
          "regularName": {
            "type": "keyword"
          },
          "duplicateHostName": {
            "type": "keyword"
          },
          "sortOrder": {
            "type": "integer"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 429 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The regular canonical hostname that should be used */
        @Required
        @Size(max = 1000)
        public String regularName;
    
        /** The duplicate hostname that should be redirected to the regular name */
        @Required
        @Size(max = 1000)
        public String duplicateHostName;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         */
        protected void setupListCondition(final DuplicateHostCB cb, final DuplicateHostPager duplicateHostPager) {
            if (StringUtil.isNotBlank(duplicateHostPager.regularName)) {
                cb.query().setRegularName_Wildcard(wrapQuery(duplicateHostPager.regularName));
            }
            if (StringUtil.isNotBlank(duplicateHostPager.duplicateHostName)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. src/main/config/es/fess_config_duplicate_host.json

                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "duplicateHostName" : {
                "type" : "keyword"
              },
              "regularName" : {
                "type" : "keyword"
              },
              "sortOrder" : {
                "type" : "integer"
              },
              "updatedBy" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 984 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/SearchForm.java

        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The regular name field for duplicate host configuration.
         */
        public String regularName;
    
        /**
         * The duplicate host name field for searching duplicate hosts.
         */
        public String duplicateHostName;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top