Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for web_config_id (0.13 seconds)

  1. src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4K bytes
    - Click Count (0)
  2. 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  3. 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();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  4. 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"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  5. 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;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/pager/WebAuthPagerTest.java

            assertEquals(1, webAuthPager.getCurrentPageNumber());
            assertNull(webAuthPager.id);
            assertNull(webAuthPager.port);
            assertNull(webAuthPager.username);
            assertNull(webAuthPager.webConfigId);
            assertNull(webAuthPager.versionNo);
    
            webAuthPager.setAllRecordCount(999);
            assertEquals(999, webAuthPager.getAllRecordCount());
            webAuthPager.setAllPageCount(999);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java

            WebAuthenticationService webAuthenticationService = new WebAuthenticationService() {
                @Override
                public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) {
                    return Collections.emptyList();
                }
            };
            ComponentUtil.register(webAuthenticationService, WebAuthenticationService.class.getCanonicalName());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

         *
         * @param webConfigId The ID of the web configuration
         * @return List of web authentication configurations for the specified web config
         */
        public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) {
            return webAuthenticationBhv.selectList(cb -> {
                cb.query().setWebConfigId_Equal(webConfigId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

        private static String webConfigId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // Create and execute a web crawler to generate failure URL logs
            createWebConfig();
            logger.info("WebConfig is created");
            refresh();
            webConfigId = getWebConfigIds(NAME_PREFIX).get(0);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  10. 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);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
Back to Top