- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getPluginPath (0.17 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
return getPath("WEB-INF/", "thumbnails", names); } public static Path getSitePath(final String... names) { return getPath("WEB-INF/", "site", names); } public static Path getPluginPath(final String... names) { return getPath("WEB-INF/", "plugin", names); } public static Path getProjectPropertiesFile() { return getPath("WEB-INF/", StringUtil.EMPTY, "project.properties");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 08:52:32 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
CopyUtil.copy(in, ResourceUtil.getPluginPath(fileName).toFile()); } } catch (final Exception e) { throw new PluginException("Failed to install the artifact " + artifact.getName(), e); } } else { try (final InputStream in = new FileInputStream(url)) { CopyUtil.copy(in, ResourceUtil.getPluginPath(fileName).toFile());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
} catch (final IOException e) { logger.warn("Failed to delete {}", dir, e); } } protected Path getJarFile(final Artifact artifact) { final Path jarPath = ResourceUtil.getPluginPath(artifact.getFileName()); if (!Files.exists(jarPath)) { throw new ThemeException(artifact.getFileName() + " does not exist."); } return jarPath; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.7K bytes - Viewed (0)