BUG 2750 - remove of migrated class
[openflowplugin.git] / drop-test / src / main / java / org / opendaylight / openflowplugin / droptest / DropTestActivator.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.openflowplugin.droptest;
9
10 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
11 import org.opendaylight.controller.sal.binding.api.AbstractBindingAwareProvider;
12 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext;
13 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
14 import org.opendaylight.openflowplugin.outputtest.OutputTestCommandProvider;
15 import org.opendaylight.openflowplugin.testcommon.DropTestDsProvider;
16 import org.opendaylight.openflowplugin.testcommon.DropTestRpcProvider;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService;
18 import org.osgi.framework.BundleContext;
19 import org.slf4j.Logger;
20 import org.slf4j.LoggerFactory;
21
22 @SuppressWarnings("all")
23 public class DropTestActivator extends AbstractBindingAwareProvider {
24     private static Logger LOG = LoggerFactory.getLogger(DropTestActivator.class);
25
26     private static DropTestDsProvider provider = new DropTestDsProvider();
27
28     private static DropTestRpcProvider rpcProvider = new DropTestRpcProvider();
29
30     private static OutputTestCommandProvider outCmdProvider;
31
32
33     public void onSessionInitiated(final ProviderContext session) {
34         LOG.debug("Activator DropAllPack INIT");
35         provider.setDataService(session.<DataBroker>getSALService(DataBroker.class));
36
37         provider.setNotificationService(session.<NotificationProviderService>getSALService(NotificationProviderService.class));
38
39         rpcProvider.setNotificationService(session.<NotificationProviderService>getSALService(NotificationProviderService.class));
40
41         rpcProvider.setFlowService(session.<SalFlowService>getRpcService(SalFlowService.class));
42         outCmdProvider.onSessionInitiated(session);
43
44         LOG.debug("Activator DropAllPack END");
45     }
46
47     public void startImpl(final BundleContext ctx) {
48         super.startImpl(ctx);
49 //      LOG.debug("-------------------------------------    DROP ALL PACK TEST INITIATED ------------------------ ")
50         outCmdProvider = new OutputTestCommandProvider(ctx);
51     }
52
53     protected void stopImpl(final BundleContext context) {
54 //      LOG.debug("--------------------------------------    DROP ALL PACK TEST STOPED --------------------------- ")
55         provider.close();
56     }
57 }