MVPN RFC6514 Extendend communities
[bgpcep.git] / bgp / openconfig-rp-spi / src / main / java / org / opendaylight / protocol / bgp / openconfig / routing / policy / spi / RouteEntryBaseAttributes.java
1 /*
2  * Copyright (c) 2018 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.bgp.openconfig.routing.policy.spi;
9
10 import javax.annotation.Nonnull;
11 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.ClusterIdentifier;
13
14 /**
15  * Contains basic attributes of route entry (AS / originator id / cluster id).
16  */
17 public interface RouteEntryBaseAttributes {
18     /**
19      * Returns AS.
20      *
21      * @return RIB AS
22      */
23     long getLocalAs();
24
25     /**
26      * Returns originator id.
27      *
28      * @return originator Id
29      */
30     @Nonnull
31     Ipv4Address getOriginatorId();
32
33     /**
34      * Returns cluster identifier.
35      *
36      * @return Cluster Identifier
37      */
38     @Nonnull
39     ClusterIdentifier getClusterId();
40 }