Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSsoType (0.05 sec)

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

         *
         * @return The SSO type string from configuration
         */
        protected String getSsoType() {
            return ComponentUtil.getFessConfig().getSsoType();
        }
    
        /**
         * Gets all registered SSO authenticators.
         *
         * @return Array of all registered SSO authenticators
         */
        public SsoAuthenticator[] getAuthenticators() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/OsddHelper.java

                return true;
            }
    
            if (!Constants.AUTO.equalsIgnoreCase(osddLinkEnabled)) {
                return false;
            }
    
            final String ssoType = fessConfig.getSsoType();
            return StringUtil.isBlank(ssoType) || Constants.NONE.equalsIgnoreCase(ssoType);
        }
    
        /**
         * Checks if the OpenSearch file exists.
         *
         * @return true if the OpenSearch file exists
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top