blob: 168b7488c010cbc6627023408ce1ebd23cecdf0c [file] [log] [blame]
/*
* 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.sling.commons.testing.osgi;
import java.io.File;
import java.io.InputStream;
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 MockBundleContext implements BundleContext {
private MockBundle bundle;
public MockBundleContext(MockBundle bundle) {
this.bundle = bundle;
}
public String getProperty(String s) {
throw new UnsupportedOperationException("Not implemented");
}
public Bundle getBundle() {
return bundle;
}
public Bundle installBundle(String s) throws BundleException {
throw new UnsupportedOperationException("Not implemented");
}
public Bundle installBundle(String s, InputStream inputStream)
throws BundleException {
throw new UnsupportedOperationException("Not implemented");
}
public Bundle getBundle(long l) {
throw new UnsupportedOperationException("Not implemented");
}
public Bundle[] getBundles() {
throw new UnsupportedOperationException("Not implemented");
}
public void addServiceListener(ServiceListener serviceListener, String s)
throws InvalidSyntaxException {
throw new UnsupportedOperationException("Not implemented");
}
public void addServiceListener(ServiceListener serviceListener) {
throw new UnsupportedOperationException("Not implemented");
}
public void removeServiceListener(ServiceListener serviceListener) {
throw new UnsupportedOperationException("Not implemented");
}
public void addBundleListener(BundleListener bundleListener) {
throw new UnsupportedOperationException("Not implemented");
}
public void removeBundleListener(BundleListener bundleListener) {
throw new UnsupportedOperationException("Not implemented");
}
public void addFrameworkListener(FrameworkListener frameworkListener) {
throw new UnsupportedOperationException("Not implemented");
}
public void removeFrameworkListener(FrameworkListener frameworkListener) {
throw new UnsupportedOperationException("Not implemented");
}
public ServiceRegistration registerService(String[] strings, Object o,
Dictionary dictionary) {
throw new UnsupportedOperationException("Not implemented");
}
public ServiceRegistration registerService(String s, Object o,
Dictionary dictionary) {
return new MockServiceRegistration();
}
public ServiceReference[] getServiceReferences(String s, String s1)
throws InvalidSyntaxException {
throw new UnsupportedOperationException("Not implemented");
}
public ServiceReference[] getAllServiceReferences(String s, String s1)
throws InvalidSyntaxException {
throw new UnsupportedOperationException("Not implemented");
}
public ServiceReference getServiceReference(String s) {
throw new UnsupportedOperationException("Not implemented");
}
public Object getService(ServiceReference serviceReference) {
throw new UnsupportedOperationException("Not implemented");
}
public boolean ungetService(ServiceReference serviceReference) {
throw new UnsupportedOperationException("Not implemented");
}
public File getDataFile(String s) {
throw new UnsupportedOperationException("Not implemented");
}
public Filter createFilter(String s) throws InvalidSyntaxException {
throw new UnsupportedOperationException("Not implemented");
}
}