Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getLoginCredential (0.12 sec)

  1. src/main/java/org/codelibs/fess/sso/SsoManager.java

         *         or no credential could be obtained
         */
        public LoginCredential getLoginCredential() {
            if (available()) {
                final SsoAuthenticator authenticator = getAuthenticator();
                if (authenticator != null) {
                    return authenticator.getLoginCredential();
                }
            }
            return null;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

     */
    public interface SsoAuthenticator {
    
        /**
         * Gets the login credential for SSO authentication.
         * @return The login credential.
         */
        LoginCredential getLoginCredential();
    
        /**
         * Resolves credential using the provided resolver.
         * @param resolver The login credential resolver.
         */
        void resolveCredential(LoginCredentialResolver resolver);
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

                    return redirect(RootAction.class);
                });
            }
            final SsoManager ssoManager = ComponentUtil.getSsoManager();
            final LoginCredential loginCredential = ssoManager.getLoginCredential();
            if (loginCredential == null) {
                if (ssoManager.available()) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("SSO is available but no user found.");
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
            ComponentUtil.getSsoManager().register(this);
        }
    
        @Override
        public LoginCredential getLoginCredential() {
            return LaRequestUtil.getOptionalRequest().map(request -> {
                if (logger.isDebugEnabled()) {
                    logger.debug("Logging in with OpenID Connect Authenticator");
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

         *         or null if no authentication information is available
         * @throws SsoLoginException if SPNEGO authentication fails
         */
        @Override
        public LoginCredential getLoginCredential() {
            return LaRequestUtil.getOptionalRequest().map(request -> {
                if (logger.isDebugEnabled()) {
                    logger.debug("Logging in with SPNEGO Authenticator");
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 17.8K bytes
    - Viewed (3)
  6. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            });
            return new SettingsBuilder().fromValues(params).build();
        }
    
        @Override
        public LoginCredential getLoginCredential() {
            return LaRequestUtil.getOptionalRequest().map(request -> {
                if (logger.isDebugEnabled()) {
                    logger.debug("Logging in with SAML Authenticator");
                }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  7. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

            ComponentUtil.getSsoManager().register(this);
            groupCache = CacheBuilder.newBuilder().expireAfterWrite(groupCacheExpiry, TimeUnit.SECONDS).build();
        }
    
        @Override
        public LoginCredential getLoginCredential() {
            return LaRequestUtil.getOptionalRequest().map(request -> {
                if (logger.isDebugEnabled()) {
                    logger.debug("Logging in with Entra ID Authenticator");
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
Back to top