Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPluginJarFiles (0.12 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         * @return an array of File objects representing matching plugin JAR files, or empty array if none found
         */
        public static File[] getPluginJarFiles(final String namePrefix) {
            return getPluginJarFiles((file, name) -> name.startsWith(namePrefix));
        }
    
        /**
         * Gets plugin JAR files from the plugin directory that match the specified filter.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         */
        public Artifact[] getInstalledArtifacts(final ArtifactType artifactType) {
            if (artifactType == ArtifactType.UNKNOWN) {
                final File[] jarFiles = ResourceUtil.getPluginJarFiles((d, n) -> {
                    for (final ArtifactType type : ArtifactType.values()) {
                        if (n.startsWith(type.getId())) {
                            return false;
                        }
                    }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top