Updated BgpManager for Be
[vpnservice.git] / bgpmanager / bgpmanager-impl / src / main / java / org / opendaylight / bgpmanager / thrift / server / implementation / BgpUpdateHandler.java
diff --git a/bgpmanager/bgpmanager-impl/src/main/java/org/opendaylight/bgpmanager/thrift/server/implementation/BgpUpdateHandler.java b/bgpmanager/bgpmanager-impl/src/main/java/org/opendaylight/bgpmanager/thrift/server/implementation/BgpUpdateHandler.java
deleted file mode 100644 (file)
index bd650ff..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.bgpmanager.thrift.server.implementation;
-
-import org.opendaylight.bgpmanager.BgpManager;
-import org.opendaylight.bgpmanager.FibDSWriter;
-import org.opendaylight.bgpmanager.thrift.gen.BgpUpdater;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-class BgpUpdateHandler implements BgpUpdater.Iface {
-
-    private static final Logger LOGGER = LoggerFactory.getLogger(BgpUpdateHandler.class);
-    private BgpManager bgpManager;
-    private FibDSWriter fibDSWriter;
-
-    public BgpUpdateHandler(BgpManager bgpMgr, FibDSWriter dsWriter) {
-        bgpManager = bgpMgr;
-        fibDSWriter = dsWriter;
-    }
-
-    public void onUpdatePushRoute(String rd, String prefix, int plen,
-                                String nexthop, int label) {
-
-       LOGGER.debug("Route add ** {} ** {}/{} ** {} ** {} ", rd, prefix, plen, nexthop, label);
-        //Write to FIB in Data Store
-        fibDSWriter.addFibEntryToDS(rd, prefix + "/" + plen, nexthop, label);
-
-   }
-
-   public void onUpdateWithdrawRoute(String rd, String prefix, int plen) {
-       LOGGER.debug("Route del ** {} ** {}/{} ", rd, prefix, plen);
-       fibDSWriter.removeFibEntryFromDS(rd, prefix + "/" + plen);
-
-   }
-
-   public void onStartConfigResyncNotification() {
-       LOGGER.debug("BGP (re)started");
-       bgpManager.reInitConn();
-   }
-
-}
-