7342485ef3be660401441f69241daa04d0bd6d13
[moon.git] /
1 /*
2  * Copyright (c) 2014 Red Hat, Inc.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.aaa.idpmapping;
10
11 import org.apache.felix.dm.DependencyActivatorBase;
12 import org.apache.felix.dm.DependencyManager;
13 import org.osgi.framework.BundleContext;
14
15 public class Activator extends DependencyActivatorBase {
16
17     @Override
18     public void init(BundleContext context, DependencyManager manager) throws Exception {
19     }
20
21     @Override
22     public void destroy(BundleContext context, DependencyManager manager) throws Exception {
23     }
24
25 }