- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for hasComponent (0.09 sec)
-
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) -
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) -
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)