Define bgp-parser-spi for parser extensibility 27/1727/1
authorRobert Varga <rovarga@cisco.com>
Mon, 7 Oct 2013 15:26:15 +0000 (17:26 +0200)
committerRobert Varga <rovarga@cisco.com>
Mon, 7 Oct 2013 15:26:15 +0000 (17:26 +0200)
commitf750db27e2820613e7cf8e4e1eadb26e78f1c9b6
tree5421a684ea843a11c4fbf1848d127fc248b82c2b
parentaad78ee7232df67221ae1f91628e5d5e00dc837b
Define bgp-parser-spi for parser extensibility

Change-Id: I0bea5c3d20f9b848895100c7d65dcf4a2feb46d6
Signed-off-by: Robert Varga <rovarga@cisco.com>
20 files changed:
bgp/parser-api/pom.xml
bgp/parser-impl/pom.xml
bgp/parser-spi/.project [new file with mode: 0644]
bgp/parser-spi/pom.xml [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/AttributeParser.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/AttributeRegistry.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/AttributeSerializer.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/CapabilityParser.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/CapabilityRegistry.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/CapabilitySerializer.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/MessageParser.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/MessageRegistry.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/MessageSerializer.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/ParameterParser.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/ParameterRegistry.java [new file with mode: 0644]
bgp/parser-spi/src/main/java/org/opendaylight/protocol/bgp/parser/spi/ParameterSerializer.java [new file with mode: 0644]
bgp/pom.xml
bgp/rib-impl/pom.xml
bgp/rib-mock/pom.xml
integration-tests/src/test/java/org/opendaylight/protocol/integration/BgpParserSpiBundleTest.java [new file with mode: 0644]