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

de.mhus.osgi.api.services.IServiceManager Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package de.mhus.osgi.api.services;

import java.util.List;

public interface IServiceManager {

    boolean create(String implClass, String bundleName) throws Exception;

    boolean delete(String implClass);

    List list();

    boolean update(String implClass, String bundleName) throws Exception;

    String test(String implClass, String bundleName) throws Exception;

    void reloadConfigured();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy