aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/container/core/config/testutil/MockOsgiWrapper.java
blob: 7539369f551d23d1de7ae7f2cab48bacb5706a1e (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
33
34
35
36
37
38
39
40
41
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.core.config.testutil;

import com.yahoo.component.ComponentSpecification;
import com.yahoo.osgi.OsgiWrapper;
import org.osgi.framework.Bundle;

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

import static java.util.Collections.emptyList;

/**
 * @author gjoranv
 */
public class MockOsgiWrapper implements OsgiWrapper {

    @Override
    public Bundle[] getBundles() {
        return new Bundle[0];
    }

    @Override
    public List<Bundle> getCurrentBundles() {
        return emptyList();
    }

    @Override
    public Bundle getBundle(ComponentSpecification bundleId) {
        return null;
    }

    @Override
    public List<Bundle> install(String absolutePath) {
        return emptyList();
    }

    @Override
    public void allowDuplicateBundles(Collection<Bundle> bundles) {  }

}