Imported vpnservice as a subtree
[netvirt.git] / vpnservice / fcapsmanager / fcaps-api / src / main / java / org / opendaylight / vpnservice / fcapsmanager / Activator.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  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 package org.opendaylight.vpnservice.fcapsmanager;
9
10 import org.slf4j.Logger;
11 import org.slf4j.LoggerFactory;
12 import org.osgi.framework.BundleActivator;
13 import org.osgi.framework.BundleContext;
14
15 public class Activator implements BundleActivator {
16     static Logger s_logger = LoggerFactory.getLogger(Activator.class);
17     public void start(BundleContext context) {
18         s_logger.info("Starting fcapsSPI bundle");
19     }
20
21     public void stop(BundleContext context) {
22         s_logger.info("Stopping fcapsSPI bundle");
23     }
24
25 }