Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getInstalledArtifacts (0.07 seconds)

  1. 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) -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

        @Test
        public void test_getInstalledArtifacts_unknown() {
            Artifact[] artifacts = pluginHelper.getInstalledArtifacts(ArtifactType.UNKNOWN);
            assertNotNull(artifacts);
        }
    
        @Test
        public void test_getInstalledArtifacts_dataStore() {
            Artifact[] artifacts = pluginHelper.getInstalledArtifacts(ArtifactType.DATA_STORE);
            assertNotNull(artifacts);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.6K bytes
    - Click Count (0)
Back to Top