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

}