Removed checkstyle warnings.
[bgpcep.git] / pcep / ietf-stateful02 / src / main / java / org / opendaylight / protocol / pcep / crabbe / initiated00 / PCEPOpenObjectParser.java
index 89f13ae8dceb818a9854bc9c11c856f3cfd9be62..0e739458ef4aa3ab91af302a98300a34db20fb15 100644 (file)
@@ -8,7 +8,7 @@
 package org.opendaylight.protocol.pcep.crabbe.initiated00;
 
 import org.opendaylight.protocol.pcep.ietf.stateful02.Stateful02OpenObjectParser;
-import org.opendaylight.protocol.pcep.spi.TlvHandlerRegistry;
+import org.opendaylight.protocol.pcep.spi.TlvRegistry;
 import org.opendaylight.protocol.util.ByteArray;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.crabbe.initiated._00.rev140113.Tlvs1;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.crabbe.initiated._00.rev140113.Tlvs1Builder;
@@ -17,79 +17,66 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.cra
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.crabbe.stateful._02.rev140110.Tlvs2Builder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.crabbe.stateful._02.rev140110.stateful.capability.tlv.Stateful;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.Open;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.open.Tlvs;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.open.TlvsBuilder;
 
 /**
- * Parser for {@link Open}
+ * Parser for Open object
  */
 public final class PCEPOpenObjectParser extends Stateful02OpenObjectParser {
 
-       public PCEPOpenObjectParser(final TlvHandlerRegistry tlvReg) {
-               super(tlvReg);
-       }
+    public PCEPOpenObjectParser(final TlvRegistry tlvReg) {
+        super(tlvReg);
+    }
 
-       @Override
-       public void addTlv(final TlvsBuilder tbuilder, final Tlv tlv) {
-               super.addTlv(tbuilder, tlv);
-               final Tlvs2Builder statefulBuilder = new Tlvs2Builder();
-               if (tbuilder.getAugmentation(Tlvs2.class) != null) {
-                       final Tlvs2 t = tbuilder.getAugmentation(Tlvs2.class);
-                       if (t.getStateful() != null) {
-                               statefulBuilder.setStateful(t.getStateful());
-                       }
-               }
-               final Tlvs1Builder cleanupBuilder = new Tlvs1Builder();
-               if (tbuilder.getAugmentation(Tlvs1.class) != null) {
-                       final Tlvs1 t = tbuilder.getAugmentation(Tlvs1.class);
-                       if (t.getLspCleanup() != null) {
-                               cleanupBuilder.setLspCleanup(t.getLspCleanup());
-                       }
-               }
-               if (tlv instanceof Stateful) {
-                       statefulBuilder.setStateful((Stateful) tlv);
-               } else if (tlv instanceof LspCleanup) {
-                       cleanupBuilder.setLspCleanup((LspCleanup) tlv);
-               }
-               tbuilder.addAugmentation(Tlvs2.class, statefulBuilder.build());
-               tbuilder.addAugmentation(Tlvs1.class, cleanupBuilder.build());
-       }
+    @Override
+    public void addTlv(final TlvsBuilder tbuilder, final Tlv tlv) {
+        super.addTlv(tbuilder, tlv);
+        final Tlvs2Builder statefulBuilder = new Tlvs2Builder();
+        if (tbuilder.getAugmentation(Tlvs2.class) != null) {
+            final Tlvs2 t = tbuilder.getAugmentation(Tlvs2.class);
+            if (t.getStateful() != null) {
+                statefulBuilder.setStateful(t.getStateful());
+            }
+        }
+        final Tlvs1Builder cleanupBuilder = new Tlvs1Builder();
+        if (tbuilder.getAugmentation(Tlvs1.class) != null) {
+            final Tlvs1 t = tbuilder.getAugmentation(Tlvs1.class);
+            if (t.getLspCleanup() != null) {
+                cleanupBuilder.setLspCleanup(t.getLspCleanup());
+            }
+        }
+        if (tlv instanceof Stateful) {
+            statefulBuilder.setStateful((Stateful) tlv);
+        } else if (tlv instanceof LspCleanup) {
+            cleanupBuilder.setLspCleanup((LspCleanup) tlv);
+        }
+        tbuilder.addAugmentation(Tlvs2.class, statefulBuilder.build());
+        tbuilder.addAugmentation(Tlvs1.class, cleanupBuilder.build());
+    }
 
-       @Override
-       public byte[] serializeTlvs(final Tlvs tlvs) {
-               if (tlvs == null) {
-                       return new byte[0];
-               }
-               super.serializeTlvs(tlvs);
-               int finalLength = 0;
-               byte[] statefulBytes = null;
-               byte[] cleanupBytes = null;
-               if (tlvs.getAugmentation(Tlvs2.class) != null) {
-                       final Tlvs2 statefulTlvs = tlvs.getAugmentation(Tlvs2.class);
-                       if (statefulTlvs.getStateful() != null) {
-                               statefulBytes = serializeTlv(statefulTlvs.getStateful());
-                               finalLength += statefulBytes.length;
-                       }
-               }
-               if (tlvs.getAugmentation(Tlvs1.class) != null) {
-                       final Tlvs1 cleanupTlv = tlvs.getAugmentation(Tlvs1.class);
-                       if (cleanupTlv.getLspCleanup() != null) {
-                               cleanupBytes = serializeTlv(cleanupTlv.getLspCleanup());
-                               finalLength += cleanupBytes.length;
-                       }
-               }
-
-               int offset = 0;
-               final byte[] result = new byte[finalLength];
-               if (statefulBytes != null) {
-                       ByteArray.copyWhole(statefulBytes, result, offset);
-                       offset += statefulBytes.length;
-               }
-               if (cleanupBytes != null) {
-                       ByteArray.copyWhole(cleanupBytes, result, offset);
-                       offset += cleanupBytes.length;
-               }
-               return result;
-       }
+    @Override
+    public byte[] serializeTlvs(final Tlvs tlvs) {
+        if (tlvs == null) {
+            return new byte[0];
+        }
+        final byte[] prev = super.serializeTlvs(tlvs);
+        int finalLength = prev.length;
+        byte[] cleanupBytes = null;
+        if (tlvs.getAugmentation(Tlvs1.class) != null) {
+            final Tlvs1 cleanupTlv = tlvs.getAugmentation(Tlvs1.class);
+            if (cleanupTlv.getLspCleanup() != null) {
+                cleanupBytes = serializeTlv(cleanupTlv.getLspCleanup());
+                finalLength += cleanupBytes.length;
+            }
+        }
+        final byte[] result = new byte[finalLength];
+        ByteArray.copyWhole(prev, result, 0);
+        int offset = prev.length;
+        if (cleanupBytes != null) {
+            ByteArray.copyWhole(cleanupBytes, result, offset);
+            offset += cleanupBytes.length;
+        }
+        return result;
+    }
 }