From 07f69d1bfd067741a2dacccca0360fa3a7094911 Mon Sep 17 00:00:00 2001 From: "Claudio D. Gasparini" Date: Wed, 20 Apr 2016 15:19:55 +0200 Subject: [PATCH] BUG-5766: BGP Link Bandwidth Extended Community Implementation of BGP Link Bandwidth Extended Community ref.: https://tools.ietf.org/html/draft-ietf-idr-link-bandwidth-06#section-2 Change-Id: I5212a71f304035bff5d8f8d23e5b9701d6105261 Signed-off-by: Claudio D. Gasparini --- bgp/concepts/pom.xml | 5 +- bgp/concepts/src/main/yang/bgp-types.yang | 19 ++++++ .../bgp/parser/impl/BGPActivator.java | 7 +++ .../impl/message/BGPOpenMessageParser.java | 2 +- .../extended/communities/LinkBandwidthEC.java | 61 +++++++++++++++++++ .../communities/LinkBandwidthECTest.java | 61 +++++++++++++++++++ 6 files changed, 153 insertions(+), 2 deletions(-) create mode 100644 bgp/parser-impl/src/main/java/org/opendaylight/protocol/bgp/parser/impl/message/update/extended/communities/LinkBandwidthEC.java create mode 100644 bgp/parser-impl/src/test/java/org/opendaylight/protocol/bgp/parser/impl/message/update/extended/communities/LinkBandwidthECTest.java diff --git a/bgp/concepts/pom.xml b/bgp/concepts/pom.xml index ea5565f25a..e78fa76a8b 100644 --- a/bgp/concepts/pom.xml +++ b/bgp/concepts/pom.xml @@ -61,7 +61,10 @@ org.opendaylight.yangtools concepts - + + ${project.groupId} + concepts +