Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for webConfigId (0.28 sec)

  1. 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"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 5.1K 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();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  3. 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;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String name;
    
        public String value;
    
        public String webConfigId;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

        @Execute
        public JsonResponse<ApiResult> put$setting(final CreateBody body) {
            validateApi(body, messages -> {});
            if (!isValidWebConfigId(body.webConfigId)) {
                return asJson(new ApiErrorResponse().message("invalid webConfigId").status(Status.BAD_REQUEST).result());
            }
    
            body.crudMode = CrudMode.CREATE;
            final WebAuthentication webAuth = getWebAuthentication(body).map(entity -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  6. 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;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

            // setup condition
            cb.query().addOrderBy_Hostname_Asc();
            cb.query().addOrderBy_WebConfigId_Asc();
    
            // search
    
        }
    
        public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) {
            return webAuthenticationBhv.selectList(cb -> {
                cb.query().setWebConfigId_Equal(webConfigId);
                cb.fetchFirst(fessConfig.getPageWebAuthMaxFetchSizeAsInteger());
            });
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. 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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/es/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());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java

        @Execute
        public JsonResponse<ApiResult> put$setting(final CreateBody body) {
            validateApi(body, messages -> {});
            if (!isValidWebConfigId(body.webConfigId)) {
                return asJson(new ApiErrorResponse().message("invalid webConfigId").status(Status.BAD_REQUEST).result());
            }
    
            body.crudMode = CrudMode.CREATE;
            final RequestHeader reqHeader = getRequestHeader(body).map(entity -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
Back to top