Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installArtifact (0.99 sec)

  1. 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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. 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;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top