Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for webConfigId (0.12 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsRequestHeaderCQ.java

        public void setWebConfigId_Equal(String webConfigId) {
            setWebConfigId_Term(webConfigId, null);
        }
    
        public void setWebConfigId_Equal(String webConfigId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setWebConfigId_Term(webConfigId, opLambda);
        }
    
        public void setWebConfigId_Term(String webConfigId) {
            setWebConfigId_Term(webConfigId, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        private static String webConfigId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // create and execute a web crawler
            createWebConfig();
            logger.info("WebConfig is created");
            refresh();
            webConfigId = getWebConfigIds(NAME_PREFIX).get(0);
    
            createJob();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            this.username = value;
        }
    
        public String getWebConfigId() {
            checkSpecifiedProperty("webConfigId");
            return convertEmptyToNull(webConfigId);
        }
    
        public void setWebConfigId(String value) {
            registerModifiedProperty("webConfigId");
            this.webConfigId = value;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsRequestHeader.java

            this.value = value;
        }
    
        public String getWebConfigId() {
            checkSpecifiedProperty("webConfigId");
            return convertEmptyToNull(webConfigId);
        }
    
        public void setWebConfigId(String value) {
            registerModifiedProperty("webConfigId");
            this.webConfigId = value;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

        public void setWebConfigId_Equal(String webConfigId) {
            setWebConfigId_Term(webConfigId, null);
        }
    
        public void setWebConfigId_Equal(String webConfigId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setWebConfigId_Term(webConfigId, opLambda);
        }
    
        public void setWebConfigId_Term(String webConfigId) {
            setWebConfigId_Term(webConfigId, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 95.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  8. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        public List<RequestHeader> getRequestHeaderList(final String webConfigId) {
            return requestHeaderBhv.selectList(cb -> {
                cb.query().setWebConfigId_Equal(webConfigId);
                cb.fetchFirst(fessConfig.getPageRequestHeaderMaxFetchSizeAsInteger());
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top