/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.aries.blueprint; import java.io.File; import java.io.InputStream; import java.util.Collection; import java.util.Dictionary; import org.osgi.framework.Bundle; import org.osgi.framework.BundleContext; import org.osgi.framework.BundleException; import org.osgi.framework.BundleListener; import org.osgi.framework.Filter; import org.osgi.framework.FrameworkListener; import org.osgi.framework.InvalidSyntaxException; import org.osgi.framework.ServiceListener; import org.osgi.framework.ServiceReference; import org.osgi.framework.ServiceRegistration; public class TestBundleContext implements BundleContext { public void addBundleListener(BundleListener arg0) { } public void addFrameworkListener(FrameworkListener arg0) { } public void addServiceListener(ServiceListener arg0) { } public void addServiceListener(ServiceListener arg0, String arg1) throws InvalidSyntaxException { } public Filter createFilter(String arg0) throws InvalidSyntaxException { return null; } public ServiceReference[] getAllServiceReferences(String arg0, String arg1) throws InvalidSyntaxException { return null; } public Bundle getBundle() { return null; } public Bundle getBundle(long arg0) { return null; } public Bundle[] getBundles() { return null; } public File getDataFile(String arg0) { return null; } public String getProperty(String arg0) { return null; } public ServiceReference getServiceReference(String arg0) { return null; } public ServiceReference[] getServiceReferences(String arg0, String arg1) throws InvalidSyntaxException { return null; } public Bundle installBundle(String arg0) throws BundleException { return null; } public Bundle installBundle(String arg0, InputStream arg1) throws BundleException { return null; } public void removeBundleListener(BundleListener arg0) { } public void removeFrameworkListener(FrameworkListener arg0) { } public void removeServiceListener(ServiceListener arg0) { } public ServiceRegistration<?> registerService(String[] clazzes, Object service, Dictionary<String, ?> properties) { throw new UnsupportedOperationException("not implemented yet"); } public ServiceRegistration<?> registerService(String clazz, Object service, Dictionary<String, ?> properties) { throw new UnsupportedOperationException("not implemented yet"); } public <S> ServiceRegistration<S> registerService(Class<S> clazz, S service, Dictionary<String, ?> properties) { throw new UnsupportedOperationException("not implemented yet"); } public <S> ServiceReference<S> getServiceReference(Class<S> clazz) { throw new UnsupportedOperationException("not implemented yet"); } public <S> Collection<ServiceReference<S>> getServiceReferences( Class<S> clazz, String filter) throws InvalidSyntaxException { throw new UnsupportedOperationException("not implemented yet"); } public <S> S getService(ServiceReference<S> reference) { throw new UnsupportedOperationException("not implemented yet"); } public boolean ungetService(ServiceReference<?> reference) { throw new UnsupportedOperationException("not implemented yet"); } public Bundle getBundle(String location) { throw new UnsupportedOperationException("not implemented yet"); } }