Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for hasComponent (0.08 seconds)

  1. 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...
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 20:01:00 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            String componentName = "testComponent";
    
            ComponentUtil.register(testInstance, componentName);
    
            assertTrue(ComponentUtil.hasComponent(componentName));
        }
    
        @Test
        public void test_hasComponent_notExists() {
            assertFalse(ComponentUtil.hasComponent("nonExistentComponent"));
        }
    
        @Test
        public void test_hasQueryParser() {
            assertFalse(ComponentUtil.hasQueryParser());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  3. 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.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 5.3K bytes
    - Click Count (0)
Back to Top