Fixed validation bug of YANG import statement
[controller.git] / opendaylight / forwardingrulesmanager / src / main / java / org / opendaylight / controller / forwardingrulesmanager / IForwardingRulesManagerAware.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 package org.opendaylight.controller.forwardingrulesmanager;
11
12
13 /**
14  * The interface which describes the methods forwarding rules manager
15  * will call for notifying the listeners of policy installation updates.
16  *
17  */
18 public interface IForwardingRulesManagerAware {
19
20         /**
21          * Inform the listeners that a troubleshooting information was 
22          * added or removed for the specified policy.
23          * 
24          * @param policyName the policy affected
25          * @param add true if the troubleshooting information was added, false otherwise
26          */
27     public void policyUpdate(String policyName, boolean add);
28 }