ba014513b50a4a131ea146ce342eb7fdbb2ea2df
[bgpcep.git] / bmp / bmp-mock / src / main / java / org / opendaylight / protocol / bmp / mock / BmpMockSessionListenerFactory.java
1 /*
2  * Copyright (c) 2017 AT&T Intellectual Property. 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.bmp.mock;
9
10 import org.opendaylight.protocol.bmp.api.BmpSessionListener;
11 import org.opendaylight.protocol.bmp.api.BmpSessionListenerFactory;
12
13 public final class BmpMockSessionListenerFactory implements BmpSessionListenerFactory {
14     @Override
15     public BmpSessionListener getSessionListener() {
16         return new BmpMockSessionListener();
17     }
18 }