Removed checkstyle warnings.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPObjectiveFunctionObjectParser.java
index d94871f2d8ed620bc172c071b5781e930dac3a42..6bca80a31af32aee611dab4e1ea392cb7ae79569 100644 (file)
@@ -7,6 +7,8 @@
  */
 package org.opendaylight.protocol.pcep.impl.object;
 
+import com.google.common.base.Preconditions;
+
 import io.netty.buffer.ByteBuf;
 
 import org.opendaylight.protocol.pcep.spi.AbstractObjectWithTlvsParser;
@@ -20,50 +22,48 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.typ
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.of.object.Of;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.of.object.OfBuilder;
 
-import com.google.common.base.Preconditions;
-
 /**
  * Parser for {@link Of}
  */
 public class PCEPObjectiveFunctionObjectParser extends AbstractObjectWithTlvsParser<OfBuilder> {
 
-       public static final int CLASS = 21;
+    public static final int CLASS = 21;
 
-       public static final int TYPE = 1;
-       /*
-        * lengths of fields
-        */
-       private static final int OF_CODE_F_LENGTH = 2;
+    public static final int TYPE = 1;
+    /*
+     * lengths of fields
+     */
+    private static final int OF_CODE_F_LENGTH = 2;
 
-       /*
-        * offsets of fields
-        */
-       private static final int OF_CODE_F_OFFSET = 0;
-       private static final int TLVS_OFFSET = OF_CODE_F_OFFSET + OF_CODE_F_LENGTH + 2;
+    /*
+     * offsets of fields
+     */
+    private static final int OF_CODE_F_OFFSET = 0;
+    private static final int TLVS_OFFSET = OF_CODE_F_OFFSET + OF_CODE_F_LENGTH + 2;
 
-       public PCEPObjectiveFunctionObjectParser(final TlvRegistry tlvReg) {
-               super(tlvReg);
-       }
+    public PCEPObjectiveFunctionObjectParser(final TlvRegistry tlvReg) {
+        super(tlvReg);
+    }
 
-       @Override
-       public Of parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
-               Preconditions.checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty.");
-               final OfBuilder builder = new OfBuilder();
-               builder.setIgnore(header.isIgnore());
-               builder.setProcessingRule(header.isProcessingRule());
-               builder.setCode(new OfId(bytes.readUnsignedShort()));
-               return builder.build();
-       }
+    @Override
+    public Of parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
+        Preconditions.checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty.");
+        final OfBuilder builder = new OfBuilder();
+        builder.setIgnore(header.isIgnore());
+        builder.setProcessingRule(header.isProcessingRule());
+        builder.setCode(new OfId(bytes.readUnsignedShort()));
+        return builder.build();
+    }
 
-       @Override
-       public byte[] serializeObject(final Object object) {
-               if (!(object instanceof Of)) {
-                       throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass()
-                                       + ". Needed PCEPObjectiveFunction.");
-               }
-               final Of specObj = (Of) object;
-               final byte[] retBytes = new byte[TLVS_OFFSET + 0];
-               ByteArray.copyWhole(ByteArray.shortToBytes(specObj.getCode().getValue().shortValue()), retBytes, OF_CODE_F_OFFSET);
-               return ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), retBytes);
-       }
+    @Override
+    public byte[] serializeObject(final Object object) {
+        if (!(object instanceof Of)) {
+            throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass()
+                    + ". Needed PCEPObjectiveFunction.");
+        }
+        final Of specObj = (Of) object;
+        final byte[] retBytes = new byte[TLVS_OFFSET + 0];
+        ByteArray.copyWhole(ByteArray.shortToBytes(specObj.getCode().getValue().shortValue()), retBytes, OF_CODE_F_OFFSET);
+        return ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), retBytes);
+    }
 }