Extract mastership blueprint service
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / mastership / MastershipChangeServiceManagerFactory.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.mastership;
9
10 /**
11  * Factory for mastership change service manager.
12  * @see MastershipChangeServiceManager
13  * @see MastershipChangeService
14  * @since 0.5.0 Nitrogen
15  */
16 public interface MastershipChangeServiceManagerFactory {
17
18     /**
19      * Creates instance of mastership change service manager.
20      * @return new instance
21      */
22     MastershipChangeServiceManager newInstance();
23
24 }