Bug 1458 - Migrate to next MD-SAL dataStore API
[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.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService;
16 import org.osgi.framework.BundleContext;
17 import org.slf4j.Logger;
18 import org.slf4j.LoggerFactory;
19
20 @SuppressWarnings("all")
21 public class DropTestActivator extends AbstractBindingAwareProvider {
22     private static Logger LOG = LoggerFactory.getLogger(DropTestActivator.class);
23
24     private static DropTestProvider provider = new DropTestProvider();
25
26     private static DropTestRpcProvider rpcProvider = new DropTestRpcProvider();
27
28     private static DropTestCommandProvider cmdProvider;
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         cmdProvider.onSessionInitiated(session);
40
41         rpcProvider.setNotificationService(session.<NotificationProviderService>getSALService(NotificationProviderService.class));
42
43         rpcProvider.setFlowService(session.<SalFlowService>getRpcService(SalFlowService.class));
44         outCmdProvider.onSessionInitiated(session);
45
46         LOG.debug("Activator DropAllPack END");
47     }
48
49     public void startImpl(final BundleContext ctx) {
50         super.startImpl(ctx);
51 //      LOG.debug("-------------------------------------    DROP ALL PACK TEST INITIATED ------------------------ ")
52         cmdProvider = new DropTestCommandProvider(ctx, provider, rpcProvider);
53         outCmdProvider = new OutputTestCommandProvider(ctx);
54     }
55
56     protected void stopImpl(final BundleContext context) {
57 //      LOG.debug("--------------------------------------    DROP ALL PACK TEST STOPED --------------------------- ")
58         provider.close();
59     }
60 }