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

}