BUG-612 : switched PCEP XRO subobject serializers to ByteBuf
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / TlvParser.java
index d6787c947fb0a2345f158b36cd35ae9a3ec4444f..f3a1f452c6a87d9e916f6ffe938077b1ec60cd12 100644 (file)
@@ -12,5 +12,5 @@ import io.netty.buffer.ByteBuf;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
 
 public interface TlvParser {
-       public Tlv parseTlv(ByteBuf buffer);
+    Tlv parseTlv(final ByteBuf buffer) throws PCEPDeserializerException;
 }