Encapsulate OpenFlowPlugin configuration
[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
19 /**
20  * Factory for creating OpenFlowPluginProvider instances.
21  */
22 public interface OpenFlowPluginProviderFactory {
23     OpenFlowPluginProvider newInstance(ConfigurationService configurationService,
24                                        DataBroker dataBroker,
25                                        RpcProviderRegistry rpcRegistry,
26                                        NotificationPublishService notificationPublishService,
27                                        EntityOwnershipService entityOwnershipService,
28                                        List<SwitchConnectionProvider> switchConnectionProviders,
29                                        ClusterSingletonServiceProvider singletonServiceProvider);
30 }