BUG-2109 : clear BGP session after it was already initialized
[bgpcep.git] / bgp / testtool / src / main / java / org / opendaylight / protocol / bgp / testtool / TestingListener.java
1 /*
2  * Copyright (c) 2013 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 package org.opendaylight.protocol.bgp.testtool;
9
10 import org.opendaylight.protocol.bgp.rib.impl.spi.ReusableBGPPeer;
11 import org.opendaylight.protocol.bgp.rib.spi.BGPSession;
12 import org.opendaylight.protocol.bgp.rib.spi.BGPTerminationReason;
13 import org.opendaylight.yangtools.yang.binding.Notification;
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 /**
18  * Testing BGP Listener.
19  */
20 public class TestingListener implements ReusableBGPPeer {
21     private static final Logger LOG = LoggerFactory.getLogger(TestingListener.class);
22
23     @Override
24     public void onMessage(final BGPSession session, final Notification message) {
25         LOG.info("Client Listener: message received: {}", message.toString());
26     }
27
28     @Override
29     public void onSessionUp(final BGPSession session) {
30         LOG.info("Client Listener: Session Up.");
31     }
32
33     @Override
34     public void onSessionDown(final BGPSession session, final Exception e) {
35         LOG.info("Client Listener: Connection lost.");
36         session.close();
37     }
38
39     @Override
40     public void onSessionTerminated(final BGPSession session, final BGPTerminationReason cause) {
41         LOG.info("Client Listener: Connection lost: {}.", cause);
42     }
43
44     @Override
45     public void releaseConnection() {
46         LOG.info("Client Listener: Connection released.");
47     }
48
49     @Override
50     public boolean isSessionActive() {
51         return true;
52     }
53 }