Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSsoType (0.26 sec)

  1. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

            assertEquals(0, authenticators.length);
        }
    
        // Test getSsoType() with actual FessConfig
        public void test_getSsoType_withFessConfig() {
            final String expectedSsoType = "openid";
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public String getSsoType() {
                    return expectedSsoType;
                }
            };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

                @Override
                public String getOsddLinkEnabled() {
                    return "auto";
                }
    
                @Override
                public String getSsoType() {
                    return "none";
                }
            });
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setContentType("application/opensearchdescription+xml");
            osddHelper.init();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default boolean isAzureAdUseDomainServices() {
            return Constants.TRUE.equalsIgnoreCase(getSystemProperty("aad.use.ds", "true"));
        }
    
        default String getSsoType() {
            return getSystemProperty(Constants.SSO_TYPE_PROPERTY, Constants.NONE);
        }
    
        //
        // fess_*.properties
        //
    
        String getAuthenticationAdminRoles();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top