Bump MDSAL to 4.0.0
[bgpcep.git] / pcep / ietf-stateful07 / src / main / java / org / opendaylight / protocol / pcep / ietf / stateful07 / PathBindingTlvParser.java
index 1778735380f4277e2ce4999e835a1d88042d6041..fa32e69aa74ece6fe756aebc2009406fad4f7f0d 100644 (file)
@@ -78,9 +78,9 @@ public final class PathBindingTlvParser implements TlvParser, TlvSerializer {
         Preconditions.checkArgument(bindingTypeValue != null,
             "Missing Binding Value in Path Bidning TLV: %s", pTlv);
         final ByteBuf body = Unpooled.buffer(MPLS_BINDING_LENGTH);
-        final PathBindingTlvCodec codec = BT_SERIALIZERS.get(bindingTypeValue.getImplementedInterface());
+        final PathBindingTlvCodec codec = BT_SERIALIZERS.get(bindingTypeValue.implementedInterface());
         Preconditions.checkArgument(codec != null,
-            "Unsupported Path Binding Type: %s", bindingTypeValue.getImplementedInterface());
+            "Unsupported Path Binding Type: %s", bindingTypeValue.implementedInterface());
         ByteBufWriteUtil.writeUnsignedShort(codec.getBindingType(), body);
         body.writeBytes(codec.serialize(bindingTypeValue));