- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for webConfigId (0.17 sec)
-
src/main/java/org/codelibs/fess/opensearch/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 57.3K bytes - Viewed (0) -
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);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 8.5K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 95.5K bytes - Viewed (1) -
src/main/resources/fess_indices/fess_config.request_header/request_header.json
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 412 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0)