summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/osgi/Osgi.java
blob: 31f1146c31199f666cef078eab1c5bd4413d5815 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.osgi;

import com.yahoo.component.ComponentSpecification;
import com.yahoo.container.bundle.BundleInstantiationSpecification;
import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceReference;

import java.util.List;

/**
 * @author Tony Vaagenes
 */
public interface Osgi {

    Bundle[] getBundles();

    Bundle getBundle(ComponentSpecification bundleId);

    List<Bundle> install(String absolutePath);

    void uninstall(Bundle bundle);

    void refreshPackages();

}