Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasComponent (0.09 sec)

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

            return hasComponent(VIEW_HELPER);
        }
    
        public static boolean hasQueryHelper() {
            return hasComponent(QUERY_HELPER);
        }
    
        public static boolean hasPopularWordHelper() {
            return hasComponent(POPULAR_WORD_HELPER);
        }
    
        public static boolean hasRelatedQueryHelper() {
            return hasComponent(RELATED_QUERY_HELPER);
        }
    
        public static boolean hasIngestFactory() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:35:51 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoManager.java

                }
            }
            return null;
        }
    
        protected SsoAuthenticator getAuthenticator() {
            final String name = getSsoType() + "Authenticator";
            if (ComponentUtil.hasComponent(name)) {
                return ComponentUtil.getComponent(name);
            }
            return null;
        }
    
        protected String getSsoType() {
            return ComponentUtil.getFessConfig().getSsoType();
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        protected PlexusContainer container;
    
        public PlexusContainer getContainer() {
            return container;
        }
    
        @BeforeEach
        public void setUp() throws Exception {
            if (getContainer().hasComponent(ProjectBuilder.class, "test")) {
                projectBuilder = getContainer().lookup(ProjectBuilder.class, "test");
            } else {
                // default over to the main project builder...
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top