Extract mastership blueprint service
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / OpenFlowPluginProviderFactory.java
1 /*
2  * Copyright (c) 2016 Brocade Communications 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.api.openflow;
9
10 import java.util.List;
11 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
12 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
13 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipService;
14 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
15 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider;
16 import org.opendaylight.openflowjava.protocol.spi.connection.SwitchConnectionProvider;
17 import org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationService;
18 import org.opendaylight.openflowplugin.api.openflow.mastership.MastershipChangeServiceManager;
19
20 /**
21  * Factory for creating OpenFlowPluginProvider instances.
22  */
23 public interface OpenFlowPluginProviderFactory {
24     OpenFlowPluginProvider newInstance(ConfigurationService configurationService,
25                                        DataBroker dataBroker,
26                                        RpcProviderRegistry rpcRegistry,
27                                        NotificationPublishService notificationPublishService,
28                                        EntityOwnershipService entityOwnershipService,
29                                        List<SwitchConnectionProvider> switchConnectionProviders,
30                                        ClusterSingletonServiceProvider singletonServiceProvider,
31                                        MastershipChangeServiceManager mastershipChangeServiceManager);
32 }