Merge "ONF Bundles sample application"
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / configuration / ConfigurationListener.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
9 package org.opendaylight.openflowplugin.api.openflow.configuration;
10
11 import javax.annotation.Nonnull;
12
13 /**
14  * Listens for changes in OpenFlowPlugin configuration.
15  */
16 public interface ConfigurationListener {
17
18     /**
19      * Method invoked on configuration property change.
20      *
21      * @param propertyName  the property name
22      * @param propertyValue the property value
23      */
24     void onPropertyChanged(@Nonnull String propertyName, @Nonnull String propertyValue);
25
26 }