Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAvailableArtifacts (0.38 sec)

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

                            }
                        }
                        return list.toArray(new Artifact[list.size()]);
                    }
                });
    
        public Artifact[] getAvailableArtifacts(final ArtifactType artifactType) {
            try {
                return availableArtifacts.get(artifactType);
            } catch (final Exception e) {
                throw new PluginException("Failed to access " + artifactType, e);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top