aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/osgi/OsgiWrapper.java
blob: e0373d69946d7482bdbad60800bcfbe148cc0dfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. 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;

/**
 * @author gjoranv
 */
public interface OsgiWrapper extends Osgi, com.yahoo.container.di.Osgi {

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

}