eebbe7f01bffe52503058741c45b032fd6164c59
[controller.git] / opendaylight / config / config-util / src / main / java / org / opendaylight / controller / config / util / capability / ModuleListener.java
1 /*
2  * Copyright (c) 2015 Cisco 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
9 package org.opendaylight.controller.config.util.capability;
10
11 import java.util.Set;
12 import org.opendaylight.yangtools.yang.model.api.Module;
13
14 public interface ModuleListener {
15
16     void onCapabilitiesChanged(Set<Module> added, Set<Module> removed);
17 }