- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getSsoManager (0.1 sec)
-
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
@Execute public ActionResponse index() { if (fessLoginAssist.getSavedUserBean().isPresent()) { return redirect(RootAction.class); } final SsoManager ssoManager = ComponentUtil.getSsoManager(); final LoginCredential loginCredential = ssoManager.getLoginCredential(); if (loginCredential == null) { if (logger.isDebugEnabled()) { logger.debug("No user in SSO request.");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/logout/LogoutAction.java
@Execute public HtmlResponse index() { final OptionalThing<FessUserBean> userBean = getUserBean(); activityHelper.logout(userBean); final String redirectUrl = userBean.map(user -> ComponentUtil.getSsoManager().logout(user)).orElse(null); fessLoginAssist.logout(); userInfoHelper.deleteUserCodeFromCookie(request); if (StringUtil.isNotBlank(redirectUrl)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
}); final LoginCredentialResolver loginResolver = new LoginCredentialResolver(resolver); for (final SsoAuthenticator auth : ComponentUtil.getSsoManager().getAuthenticators()) { auth.resolveCredential(loginResolver); } } public static class LoginCredentialResolver {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
@PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } ComponentUtil.getSsoManager().register(this); } @Override public LoginCredential getLoginCredential() { return LaRequestUtil.getOptionalRequest().map(request -> { if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
@PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } ComponentUtil.getSsoManager().register(this); } protected synchronized org.codelibs.spnego.SpnegoAuthenticator getAuthenticator() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
return getComponent(QUERY_PARSER); } public static PermissionHelper getPermissionHelper() { return getComponent(PERMISSION_HELPER); } public static SsoManager getSsoManager() { return getComponent(SSO_MANAGER); } public static ThumbnailManager getThumbnailManager() { return getComponent(THUMBNAIL_MANAGER); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
@PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } ComponentUtil.getSsoManager().register(this); defaultSettings = new HashMap<>(); defaultSettings.put("onelogin.saml2.strict", "true"); defaultSettings.put("onelogin.saml2.debug", "false");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
@PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } ComponentUtil.getSsoManager().register(this); groupCache = CacheBuilder.newBuilder().expireAfterWrite(groupCacheExpiry, TimeUnit.SECONDS).build(); } @Override public LoginCredential getLoginCredential() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0)