1b0b8ab724d1527ff895099a086f597189cd310d
[netvirt.git] / bgpmanager / impl / src / test / java / org / opendaylight / netvirt / bgpmanager / test / AbstractMockFibManager.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.netvirt.bgpmanager.test;
9
10 import java.util.Collection;
11 import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener;
12 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
13 import org.opendaylight.yangtools.yang.binding.DataObject;
14
15 public abstract class AbstractMockFibManager<D extends DataObject> implements DataTreeChangeListener<D> {
16
17     public AbstractMockFibManager() {
18         // Do Nothing
19     }
20
21
22     public void onDataTreeChanged(Collection<DataTreeModification<D>> changes) {
23         // TODO Auto-generated method stub
24     }
25
26 }