Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for handler_name (0.04 sec)

  1. src/test/java/org/codelibs/fess/it/admin/DataConfigTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            final String handlerName = "DatabaseDataStore";
            requestBody.put("handler_name", handlerName);
            requestBody.put("boost", id);
            requestBody.put("available", true);
            requestBody.put("sort_order", id);
            return requestBody;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_details.jsp

                                        <tr>
                                            <th><la:message key="labels.handler_name"/></th>
                                            <td><c:forEach var="hn" varStatus="s"
                                                           items="${handlerNameItems}">
                                                <c:if test="${handlerName==f:u(hn.value)}">
                                                    ${f:h(hn.label)}<br/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig.jsp

                                            <label for="handlerName" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.handler_name"/></label>
                                            <div class="col-sm-10">
                                                <la:errors property="handlerName"/>
                                                <la:select styleId="handlerName" property="handlerName"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 9.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp

                                        <label for="handlerName" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.handler_name"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="handlerName"/>
                                            <la:select styleId="handlerName" property="handlerName"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.data_config/data_config.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "handlerName": {
            "type": "keyword"
          },
          "handlerParameter": {
            "type": "keyword"
          },
          "handlerScript": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "available": {
            "type": "boolean"
          },
          "permissions": {
            "type": "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 859 bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_data_config.json

                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "description" : {
                "type" : "text"
              },
              "handlerName" : {
                "type" : "keyword"
              },
              "handlerParameter" : {
                "type" : "keyword"
              },
              "handlerScript" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/SearchForm.java

        }
    
        /**
         * The name field for searching data configurations.
         */
        public String name;
    
        /**
         * The handler name field for searching data configurations.
         */
        public String handlerName;
    
        /**
         * The description field for searching data configurations.
         */
        public String description;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/SearchBody.java

    public class SearchBody extends BaseSearchBody {
    
        /** The data configuration name to search for. */
        public String name;
    
        /** The handler name to search for in data configurations. */
        public String handlerName;
    
        /** The description to search for in data configurations. */
        public String description;
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
            super();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

            if (StringUtil.isNotBlank(dataConfigPager.name)) {
                cb.query().setName_Wildcard(dataConfigPager.name);
            }
            if (StringUtil.isNotBlank(dataConfigPager.handlerName)) {
                cb.query().setHandlerName_Wildcard(wrapQuery(dataConfigPager.handlerName));
            }
            if (StringUtil.isNotBlank(dataConfigPager.description)) {
                if (dataConfigPager.description.startsWith("*")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        @Size(max = 1000)
        public String description;
    
        /** Handler class name for processing this data source */
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        /** Parameters passed to the data handler */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        /** Script for custom data processing logic */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
Back to top