aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/osgi/Osgi.java
blob: db150e573c5080193a99ab18dc4d1585e8dd68c9 (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
27
28
29
30
31
32
// Copyright Vespa.ai. 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 org.osgi.framework.Bundle;

import java.util.Collection;
import java.util.List;

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

    Bundle[] getBundles();

    /** Returns all bundles that have not been scheduled for uninstall. */
    List<Bundle> getCurrentBundles();

    Bundle getBundle(ComponentSpecification bundleId);

    List<Bundle> install(String absolutePath);

    /** Sets the collection of bundles to allow duplicates for. */
    void allowDuplicateBundles(Collection<Bundle> bundles);

    default boolean hasFelixFramework() {
       return false;
    }

}