Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for webConfigId (0.12 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/RequestHeader.java

                    + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", value=" + value + ", webConfigId=" + webConfigId
                    + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebAuthenticationCA.java

            setWebConfigId_Terms("webConfigId", opLambda, null);
        }
    
        public void setWebConfigId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda,
                OperatorCall<BsWebAuthenticationCA> aggsLambda) {
            setWebConfigId_Terms("webConfigId", opLambda, aggsLambda);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java

        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String port;
    
        public String username;
    
        public String webConfigId;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_request_header.json

                "type" : "keyword"
              },
              "updatedTime" : {
                "type" : "long"
              },
              "value" : {
                "type" : "keyword"
              },
              "webConfigId" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021056434",
            "number_of_shards" : "5",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 967 bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java

        @AfterEach
        void deleteWebConfig() {
            final Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", NUM * 2);
            final String webConfigId = getWebConfigId();
            checkMethodBase(searchBody).delete("/api/admin/webconfig/setting/" + webConfigId).then().body("response.status", equalTo(0));
        }
    
        @Override
        protected Map<String, Object> createTestParam(int id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.web_authentication/web_authentication.json

          },
          "username": {
            "type": "keyword"
          },
          "password": {
            "type": "keyword"
          },
          "parameters": {
            "type": "keyword"
          },
          "webConfigId": {
            "type": "keyword"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 699 bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

                                            <td><c:forEach var="item" items="${webConfigItems}">
                                                <c:if test="${webConfigId==item.value}">${f:h(item.label)}</c:if>
                                            </c:forEach> <la:hidden property="webConfigId"/></td>
                                        </tr>
                                        </tbody>
                                    </table>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  8. src/main/config/es/fess_config_web_authentication.json

                "type" : "keyword"
              },
              "updatedTime" : {
                "type" : "long"
              },
              "username" : {
                "type" : "keyword"
              },
              "webConfigId" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021057587",
            "number_of_shards" : "5",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                    + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username=" + username + ", webConfigId="
                    + webConfigId + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java

        @Required
        @Size(max = 100)
        public String name;
    
        @Required
        @Size(max = 1000)
        public String value;
    
        @Required
        @Size(max = 1000)
        public String webConfigId;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top