All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.katalon.platform.internal.api.PluginInstaller Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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