1 package org.springframework.osgi.context;
2
3 import org.osgi.framework.BundleContext;
4
5 /**
6 * This is a clone of a SpringDM interface to allow us to shim plugins that use it.
7 *
8 * @deprecated use {@link org.eclipse.gemini.blueprint.context.BundleContextAware}
9 */
10 @Deprecated
11 public interface BundleContextAware {
12 void setBundleContext(BundleContext bundleContext);
13 }