- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for installArtifact (0.07 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
*/ public static void installArtifact(final Artifact artifact) { new Thread(() -> { final PluginHelper pluginHelper = ComponentUtil.getPluginHelper(); final Artifact[] artifacts = pluginHelper.getInstalledArtifacts(artifact.getType()); try { pluginHelper.installArtifact(artifact); } catch (final Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Installs an artifact based on its type. * * @param artifact the artifact to install */ public void installArtifact(final Artifact artifact) { switch (artifact.getType()) { case THEME: install(artifact); ComponentUtil.getThemeHelper().install(artifact); break;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) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
// Mock install method } }; Artifact artifact = new Artifact("fess-ds-test", "1.0.0", "http://test.com/test.jar"); try { testHelper.installArtifact(artifact); // If we get here, the method executed without throwing assertTrue(true); } catch (Exception e) { fail("Unexpected exception: " + e.getMessage()); }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)