BGPCEP-574: Rework rib config policies
[bgpcep.git] / bgp / openconfig-rp-spi / src / main / java / org / opendaylight / protocol / bgp / openconfig / routing / policy / spi / policy / condition / BgpConditionsAugmentationPolicy.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
9 package org.opendaylight.protocol.bgp.openconfig.routing.policy.spi.policy.condition;
10
11 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.bgp.policy.rev151009.routing.policy.policy.definitions.policy.definition.statements.statement.conditions.BgpConditions;
12 import org.opendaylight.yangtools.yang.binding.Augmentation;
13
14 /**
15  * Condition Policy: Check if route matches defined condition.
16  */
17 public interface BgpConditionsAugmentationPolicy
18         <T extends Augmentation<BgpConditions>, N> extends ConditionsPolicy<T, N> {
19 }