e3d911fc084387c257751ce641a1b4352002c7cd
[bgpcep.git] / bgp / rib-spi / src / main / java / org / opendaylight / protocol / bgp / rib / spi / state / BGPRibStateConsumer.java
1 /*
2  * Copyright (c) 2016 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.rib.spi.state;
9
10 import org.eclipse.jdt.annotation.NonNullByDefault;
11
12 /**
13  * Interface for acquiring BGP RIB State.
14  */
15 @NonNullByDefault
16 public interface BGPRibStateConsumer {
17     /**
18      * Returns RIB Operational State.
19      *
20      * @return BGP RIB State
21      */
22     BGPRibState getRIBState();
23 }