All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.osgi.MockOsgi Maven / Gradle / Ivy

There is a newer version: 8.458.13
Show newest version
// Copyright 2017 Yahoo Holdings. 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 com.yahoo.container.bundle.BundleInstantiationSpecification;
import com.yahoo.jdisc.test.NonWorkingOsgiFramework;
import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceReference;

import java.util.Collections;
import java.util.List;

/**
 * @author Tony Vaagenes
 * @author gjoranv
 */
public class MockOsgi extends NonWorkingOsgiFramework implements Osgi {

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

    @Override
    public List getCurrentBundles() {
        return Collections.emptyList();
    }

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

    @Override
    public List install(String absolutePath) {
        return Collections.emptyList();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy