Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for web_config_id (2.26 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

        /**
         * Validates if the given web configuration ID exists.
         *
         * @param webconfigId the web configuration ID to validate
         * @return true if the web configuration exists, false otherwise
         */
        protected Boolean isValidWebConfigId(final String webconfigId) {
            return webConfigService.getWebConfig(webconfigId).isPresent();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

         *
         * @param webConfigId the unique identifier of the web configuration
         * @return a list of request headers associated with the specified web configuration
         */
        public List<RequestHeader> getRequestHeaderList(final String webConfigId) {
            return requestHeaderBhv.selectList(cb -> {
                cb.query().setWebConfigId_Equal(webConfigId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsRequestHeaderCA.java

            setWebConfigId_Terms("webConfigId", opLambda, null);
        }
    
        public void setWebConfigId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsRequestHeaderCA> aggsLambda) {
            setWebConfigId_Terms("webConfigId", opLambda, aggsLambda);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 46.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader_edit.jsp

                                        <label for="webConfigId" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.reqheader_web_crawling_config"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="webConfigId"/>
                                            <la:select styleId="webConfigId" property="webConfigId"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

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

                    + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", value=" + value + ", webConfigId=" + webConfigId
                    + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 76.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/RequestHeaderDbm.java

                0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnWebConfigId = cci("webConfigId", "webConfigId", null, null, String.class, "webConfigId", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnCreatedBy() {
            return _columnCreatedBy;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

         */
        public void delete(final WebConfig webConfig) {
    
            final String webConfigId = webConfig.getId();
    
            webConfigBhv.delete(webConfig, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
            webAuthenticationBhv.queryDelete(cb -> {
                cb.query().setWebConfigId_Equal(webConfigId);
            });
    
            requestHeaderBhv.queryDelete(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebAuthenticationDbm.java

                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnWebConfigId = cci("webConfigId", "webConfigId", null, null, String.class, "webConfigId", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnAuthRealm() {
            return _columnAuthRealm;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top