- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 110 for webconfig (2.8 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/RequestHeader.java
} } return webConfig; } @Override public String toString() { return "RequestHeader [webConfig=" + webConfig + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", name=" + name + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", value=" + value + ", webConfigId=" + webConfigId + ", docMeta=" + docMeta + "]"; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
* Configuration parameters are encrypted before storage. * * @param webConfig The web configuration to store */ public void store(final WebConfig webConfig) { webConfig.setConfigParameter(ParameterUtil.encrypt(webConfig.getConfigParameter())); webConfigBhv.insertOrUpdate(webConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
} public WebConfig getWebConfig() { if (webConfig == null) { final WebConfigService webConfigService = ComponentUtil.getComponent(WebConfigService.class); try { webConfig = webConfigService.getWebConfig(getWebConfigId()).get(); } catch (final Exception e) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
*/ // GET /api/admin/webconfig/settings // PUT /api/admin/webconfig/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final WebConfigPager pager = copyBeanToNewBean(body, WebConfigPager.class); final List<WebConfig> list = webConfigService.getWebConfigList(pager); return asJson(Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/CreateBody.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.webconfig; import org.codelibs.fess.app.web.admin.webconfig.CreateForm; /** * Request body for creating web configuration via REST API. * Extends CreateForm to inherit validation and field definitions. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1014 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp
</div> <section class="content"> <div class="row"> <div class="col-md-12"> <c:if test="${!displayCreateLink}"> <la:link href="../webconfig/" styleClass="btn btn-primary ${f:h(editableClass)}"> <i class="fa fa-arrow-circle-right" aria-hidden="true"></i> <la:message key="labels.webauth_create_web_config"/>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/EditBody.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.webconfig; import org.codelibs.fess.app.web.admin.webconfig.EditForm; /** * Request body class for web config edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader.jsp
</div> <section class="content"> <div class="row"> <div class="col-md-12"> <c:if test="${!displayCreateLink}"> <la:link href="../webconfig/" styleClass="btn btn-primary ${f:h(editableClass)}"> <la:message key="labels.reqheader_create_web_config"/> </la:link> </c:if>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="crawl"/> <jsp:param name="menuType" value="webConfig"/> </jsp:include> <main class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/SearchBody.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.webconfig; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for web crawling configuration administration API. */ public class SearchBody extends BaseSearchBody { /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0)