- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getInstalledArtifacts (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
final List<Map<String, String>> result = new ArrayList<>(); for (final PluginHelper.ArtifactType artifactType : PluginHelper.ArtifactType.values()) { result.addAll(Arrays.stream(pluginHelper.getInstalledArtifacts(artifactType)) .map(AdminPluginAction::beanToMap) .collect(Collectors.toList())); } return result; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
} public void test_getInstalledArtifacts_unknown() { Artifact[] artifacts = pluginHelper.getInstalledArtifacts(ArtifactType.UNKNOWN); assertNotNull(artifacts); } public void test_getInstalledArtifacts_dataStore() { Artifact[] artifacts = pluginHelper.getInstalledArtifacts(ArtifactType.DATA_STORE); assertNotNull(artifacts); } public void test_getArtifact_found() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
* Gets the list of installed artifacts of the specified type. * * @param artifactType the type of artifacts to retrieve * @return an array of installed artifacts */ public Artifact[] getInstalledArtifacts(final ArtifactType artifactType) { if (artifactType == ArtifactType.UNKNOWN) { final File[] jarFiles = ResourceUtil.getPluginJarFiles((d, n) -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0)