- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for webConfigId (0.17 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
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()); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.5K bytes - Viewed (0) -
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 -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.8K bytes - Viewed (0) -
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 -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.8K bytes - Viewed (0) -
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());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 09:48:04 UTC 2024 - 7.6K bytes - Viewed (0)