Provide Add Path support for all AFI/SAFI
[bgpcep.git] / bmp / bmp-impl / src / main / java / org / opendaylight / protocol / bmp / impl / spi / BmpRouter.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.protocol.bmp.impl.spi;
10
11 import org.opendaylight.protocol.bmp.api.BmpSessionListener;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.monitor.rev180329.RouterId;
13
14 /**
15  * Represent monitored router.
16  *
17  */
18 public interface BmpRouter extends BmpSessionListener, AutoCloseable {
19
20     /**
21      * Returns router's identifier, represented by router's remote IP address.
22      * @return router identifier.
23      */
24     RouterId getRouterId();
25
26 }