37cb37bd1df30e08331ddbd777a977a366579a17
[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.parser.BGPMessage;
11 import org.opendaylight.protocol.bgp.parser.BGPSession;
12 import org.opendaylight.protocol.bgp.parser.BGPSessionListener;
13 import org.opendaylight.protocol.bgp.parser.BGPTerminationReason;
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 /**
18  * Testing BGP Listener.
19  */
20 public class TestingListener implements BGPSessionListener {
21         private static final Logger logger = LoggerFactory.getLogger(TestingListener.class);
22
23         @Override
24         public void onMessage(final BGPSession session, final BGPMessage message) {
25                 logger.info("Client Listener: message received: {}", message.toString());
26         }
27
28         @Override
29         public void onSessionUp(final BGPSession session) {
30                 logger.info("Client Listener: Session Up.");
31         }
32
33         @Override
34         public void onSessionDown(final BGPSession session, final Exception e) {
35                 logger.info("Client Listener: Connection lost.");
36                 session.close();
37         }
38
39         @Override
40         public void onSessionTerminated(final BGPSession session, final BGPTerminationReason cause) {
41                 logger.info("Client Listener: Connection lost: {}.", cause);
42         }
43 }