Merge "BUG-4177: Li - flowMod result ignores errors from device"
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / OpenFlowPluginProvider.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.openflowplugin.api.openflow;
10
11 import java.util.Collection;
12 import org.opendaylight.controller.md.sal.binding.api.BindingService;
13 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
14 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
15 import org.opendaylight.controller.md.sal.binding.api.NotificationService;
16 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
17 import org.opendaylight.openflowjava.protocol.spi.connection.SwitchConnectionProvider;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflowplugin.api.types.rev150327.OfpRole;
19
20 /**
21  * Created by Martin Bobak <mbobak@cisco.com> on 27.3.2015.
22  */
23 public interface OpenFlowPluginProvider extends AutoCloseable, BindingService {
24
25     /**
26      * Method sets openflow java's connection providers.
27      */
28     void setSwitchConnectionProviders(Collection<SwitchConnectionProvider> switchConnectionProvider);
29
30     /**
31      * setter
32      *
33      * @param dataBroker
34      */
35     void setDataBroker(DataBroker dataBroker);
36
37     void setRpcProviderRegistry(RpcProviderRegistry rpcProviderRegistry);
38
39     void setNotificationProviderService(NotificationService notificationProviderService);
40
41     void setNotificationPublishService(NotificationPublishService notificationPublishService);
42
43     /**
44      * Method sets role of this application in clustered environment.
45      */
46     void setRole(OfpRole role);
47
48     /**
49      * Method initializes all DeviceManager, RpcManager and related contexts.
50      */
51     void initialize();
52
53     /**
54      * This parameter indicates whether it is mandatory for switch to support OF1.3 features : table, flow, meter,group.
55      * If this is set to true and switch doesn't support these features its connection will be denied.
56      * @param switchFeaturesMandatory
57      */
58     void setSwitchFeaturesMandatory(final boolean switchFeaturesMandatory);
59
60     boolean isSwitchFeaturesMandatory();
61
62     boolean isStatisticsPollingOff();
63
64     void setIsStatisticsPollingOff(final boolean isStatisticsPollingOff);
65
66     }