- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for WebAuthenticationService (0.08 sec)
-
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
* Provides CRUD operations for web authentication settings including * listing, retrieving, storing, and deleting authentication configurations. */ public class WebAuthenticationService { /** * Default constructor. */ public WebAuthenticationService() { // Default constructor } /** * Behavior class for web authentication operations. */ @Resource
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
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());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
// ========= /** Service for managing web authentication configurations */ @Resource private WebAuthenticationService webAuthenticationService; /** Pager for paginating web authentication results */ @Resource private WebAuthPager webAuthPager; /** Service for accessing and modifying web configuration settings */ @Resource
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
if (crawlerClientFactory != null) { return crawlerClientFactory; } final CrawlerClientFactory factory = creator.get(); final WebAuthenticationService webAuthenticationService = ComponentUtil.getComponent(WebAuthenticationService.class); final RequestHeaderService requestHeaderService = ComponentUtil.getComponent(RequestHeaderService.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
import java.util.stream.Collectors; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.app.pager.WebAuthPager; import org.codelibs.fess.app.service.WebAuthenticationService; import org.codelibs.fess.app.service.WebConfigService; import org.codelibs.fess.app.web.CrudMode; import org.codelibs.fess.app.web.api.ApiResult; import org.codelibs.fess.app.web.api.ApiResult.ApiConfigResponse;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0)