- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getSsoType (0.03 sec)
-
src/main/java/org/codelibs/fess/sso/SsoManager.java
} /** * Gets the configured SSO type from the system configuration. * * @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 */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0) -
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 existsRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
if (StringUtil.isBlank(value)) { value = getSystemProperty("aad.use.ds", "true"); } return Constants.TRUE.equalsIgnoreCase(value); } default String getSsoType() { return getSystemProperty(Constants.SSO_TYPE_PROPERTY, Constants.NONE); } // // fess_*.properties // String getAuthenticationAdminRoles();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0)