Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasComponent (0.17 sec)

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static boolean hasQueryParser() {
            return hasComponent(QUERY_PARSER);
        }
    
        /**
         * Checks if view helper is available.
         * @return True if view helper is available, false otherwise.
         */
        public static boolean hasViewHelper() {
            return hasComponent(VIEW_HELPER);
        }
    
        /**
         * Checks if query helper is available.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoManager.java

            if ("aad".equals(ssoType)) {
                ssoType = "entraid";
            }
            final String name = ssoType + "Authenticator";
            if (ComponentUtil.hasComponent(name)) {
                return ComponentUtil.getComponent(name);
            }
            return null;
        }
    
        /**
         * Gets the configured SSO type from the system configuration.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top