Mass-convert all compontents to use -no-zone addresses
[bgpcep.git] / bgp / openconfig-rp-spi / src / main / java / org / opendaylight / protocol / bgp / openconfig / routing / policy / spi / BGPRibRoutingPolicyFactory.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 org.eclipse.jdt.annotation.NonNullByDefault;
11 import org.opendaylight.protocol.bgp.rib.spi.policy.BGPRibRoutingPolicy;
12 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.routing.policy.rev151009.apply.policy.group.apply.policy.Config;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4AddressNoZone;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.ClusterIdentifier;
15
16 /**
17  * Factory per RIB Routing Policies .
18  */
19 @NonNullByDefault
20 public interface BGPRibRoutingPolicyFactory {
21     /**
22      * Creates RIB Routing Policies from BGP Openconfig policy Configuration.
23      *
24      * @param localAs      RIB AS
25      * @param bgpId        BGP ID
26      * @param clusterId    Cluster Identifier
27      * @param policyConfig BGP Openconfig policy Configuration
28      * @return BGPRIBRoutingPolicy
29      */
30     BGPRibRoutingPolicy buildBGPRibPolicy(long localAs, Ipv4AddressNoZone bgpId, ClusterIdentifier clusterId,
31             Config policyConfig);
32 }