BUG-2982 : moved path-attributes container to grouping
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / AS4AggregatorAttributeParser.java
index e567a76b588f52925ea2c26d18f59a66833966f0..4056ad6bef12035cc3fd3892750bfd4a85580275 100644 (file)
@@ -8,10 +8,9 @@
 package org.opendaylight.protocol.bgp.parser.impl.message.update;
 
 import io.netty.buffer.ByteBuf;
-
 import org.opendaylight.protocol.bgp.parser.spi.AttributeParser;
 import org.opendaylight.protocol.bgp.parser.spi.AttributeSerializer;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.update.PathAttributesBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.path.attributes.AttributesBuilder;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
 public final class AS4AggregatorAttributeParser implements AttributeParser, AttributeSerializer {
@@ -19,7 +18,7 @@ public final class AS4AggregatorAttributeParser implements AttributeParser, Attr
     public static final int TYPE = 17;
 
     @Override
-    public void parseAttribute(final ByteBuf buffer, final PathAttributesBuilder builder) {
+    public void parseAttribute(final ByteBuf buffer, final AttributesBuilder builder) {
         // AS4 Aggregator is ignored
     }