blob: 956b8016334594fc477611618e2c4c2788a97ad3 [file] [log] [blame]
Richard S. Hall5c23fb92006-09-28 19:55:37 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Richard S. Hall54d1e2e2006-04-05 14:19:38 +00009 *
Richard S. Hall5c23fb92006-09-28 19:55:37 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000011 *
Richard S. Hall5c23fb92006-09-28 19:55:37 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000018 */
19package org.apache.felix.shell.gui.plugin;
20
21import org.osgi.framework.BundleActivator;
22import org.osgi.framework.BundleContext;
23
24public class Activator implements BundleActivator
25{
26 private BundleContext m_context = null;
27
28 public void start(BundleContext context)
29 {
30 m_context = context;
31
32 // Register the bundle list plugin.
33 m_context.registerService(
34 org.apache.felix.shell.gui.Plugin.class.getName(),
35 new BundleListPlugin(m_context), null);
36
37 // Register the shell plugin.
38 m_context.registerService(
39 org.apache.felix.shell.gui.Plugin.class.getName(),
40 new ShellPlugin(m_context), null);
41
42 // Register the OBR plugin.
43 m_context.registerService(
44 org.apache.felix.shell.gui.Plugin.class.getName(),
45 new OBRPlugin(m_context), null);
46 }
47
48 public void stop(BundleContext context)
49 {
50 }
51}