b5e86e05c163f04ec9ba9b80951575b3762dd7f0
[controller.git] / opendaylight / netconf / netconf-ssh / src / main / java / org / opendaylight / controller / netconf / osgi / NetconfSSHActivator.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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.controller.netconf.osgi;
9
10 import org.opendaylight.controller.netconf.ssh.NetconfSSHServer;
11 import org.osgi.framework.BundleActivator;
12 import org.osgi.framework.BundleContext;
13
14 public class NetconfSSHActivator implements BundleActivator{
15
16     @Override
17     public void start(BundleContext context) throws Exception {
18         NetconfSSHServer.start();
19     }
20
21     @Override
22     public void stop(BundleContext context) throws Exception {
23
24     }
25 }