Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSystemProperty (0.1 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default boolean isEntraIdUseDomainServices() {
            String value = getSystemProperty("entraid.use.ds", null);
            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);
        }
    
        //
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

         */
        protected List<String> getDefaultGroupList() {
            String value = ComponentUtil.getFessConfig().getSystemProperty(ENTRAID_DEFAULT_GROUPS);
            if (StringUtil.isBlank(value)) {
                value = ComponentUtil.getFessConfig().getSystemProperty(AAD_DEFAULT_GROUPS);
            }
            if (StringUtil.isBlank(value)) {
                return Collections.emptyList();
            }
    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