Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / VendorInformationTlvRegistry.java
index d7d01d773953b00143f4a55b405ad50454ed9156..259e0b6c36f011dd61fb6b4ccf2cb3e0006795ed 100644 (file)
@@ -5,19 +5,16 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.protocol.pcep.spi;
 
 import io.netty.buffer.ByteBuf;
-
 import java.util.Optional;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.iana.rev130816.EnterpriseNumber;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.vendor.information.tlvs.VendorInformationTlv;
 
 public interface VendorInformationTlvRegistry {
+    Optional<VendorInformationTlv> parseVendorInformationTlv(EnterpriseNumber enterpriseNumber, ByteBuf buffer)
+            throws PCEPDeserializerException;
 
-    Optional<VendorInformationTlv> parseVendorInformationTlv(final EnterpriseNumber enterpriseNumber, final ByteBuf buffer) throws PCEPDeserializerException;
-
-    void serializeVendorInformationTlv(final VendorInformationTlv viTlv, final ByteBuf buffer);
-
+    void serializeVendorInformationTlv(VendorInformationTlv viTlv, ByteBuf buffer);
 }