
com.katalon.platform.internal.api.PluginInstaller Maven / Gradle / Ivy
package com.katalon.platform.internal.api;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.BundleException;
public interface PluginInstaller {
Bundle installPlugin(BundleContext bundleContext, String fileUrl) throws BundleException;
Bundle uninstallPlugin(BundleContext bundleContext, String fileUrl) throws BundleException;
Bundle register(Bundle bundle) throws BundleException;
Bundle deregister(Bundle bundle) throws BundleException;
Bundle softDeregister(Bundle bundle);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy