Declare a property for commons-lang version in poms and use it.
[controller.git] / opendaylight / clustering / services / src / main / java / org / opendaylight / controller / clustering / services / ICoordinatorChangeAware.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 /**
11  * @file   ICoordinatorChangeAware.java
12  *
13  *
14  * @brief  Interface that needs to be implemented by who wants to be
15  * notified of coordinator role change
16  *
17  */
18 package org.opendaylight.controller.clustering.services;
19
20 /**
21  * Interface that needs to be implemented by who wants to be
22  * notified of coordinator role change
23  *
24  */
25 public interface ICoordinatorChangeAware {
26
27     /**
28      * Function that will be called when there is the event of
29      * coordinator change in the cluster.
30      */
31     public void coordinatorChanged();
32 }