Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ArtifactType (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         *
         * @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) -> {
                    for (final ArtifactType type : ArtifactType.values()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            assertEquals(ArtifactType.THEME, ArtifactType.getType("fess-theme-test"));
            assertEquals(ArtifactType.INGEST, ArtifactType.getType("fess-ingest-test"));
            assertEquals(ArtifactType.SCRIPT, ArtifactType.getType("fess-script-test"));
            assertEquals(ArtifactType.WEBAPP, ArtifactType.getType("fess-webapp-test"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  3. 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.getAvailableArtifacts(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)
  4. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

    import org.codelibs.core.stream.StreamUtil;
    import org.codelibs.fess.exception.ThemeException;
    import org.codelibs.fess.helper.PluginHelper.Artifact;
    import org.codelibs.fess.helper.PluginHelper.ArtifactType;
    import org.codelibs.fess.util.ResourceUtil;
    
    /**
     * Helper class for managing theme installation and uninstallation.
     * Handles the extraction and deployment of theme files from JAR artifacts.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         */
        protected List<String> loadDataStoreNameList() {
            final Set<String> nameSet = new HashSet<>();
            final File[] jarFiles = ResourceUtil.getPluginJarFiles(PluginHelper.ArtifactType.DATA_STORE.getId());
            for (final File jarFile : jarFiles) {
                try (FileSystem fs = FileSystems.newFileSystem(jarFile.toPath(), ClassLoader.getSystemClassLoader())) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top