Removed checkstyle warnings.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPLoadBalancingObjectParser.java
index 82d7404e71db8482fdc65a060f0dcdc91eddc17d..2caa57788f7d1f82ed8d3700a1f46f06bc71dfe1 100644 (file)
@@ -7,6 +7,9 @@
  */
 package org.opendaylight.protocol.pcep.impl.object;
 
+import com.google.common.base.Preconditions;
+import com.google.common.primitives.UnsignedBytes;
+
 import io.netty.buffer.ByteBuf;
 
 import org.opendaylight.protocol.pcep.spi.AbstractObjectWithTlvsParser;
@@ -20,57 +23,55 @@ 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.load.balancing.object.LoadBalancing;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.load.balancing.object.LoadBalancingBuilder;
 
-import com.google.common.base.Preconditions;
-import com.google.common.primitives.UnsignedBytes;
-
 /**
  * Parser for {@link LoadBalancing}
  */
 public class PCEPLoadBalancingObjectParser extends AbstractObjectWithTlvsParser<LoadBalancingBuilder> {
 
-       public static final int CLASS = 14;
+    public static final int CLASS = 14;
 
-       public static final int TYPE = 1;
+    public static final int TYPE = 1;
 
-       private static final int FLAGS_F_LENGTH = 1;
-       private static final int MAX_LSP_F_LENGTH = 1;
-       private static final int MIN_BAND_F_LENGTH = 4;
+    private static final int FLAGS_F_LENGTH = 1;
+    private static final int MAX_LSP_F_LENGTH = 1;
+    private static final int MIN_BAND_F_LENGTH = 4;
 
-       private static final int FLAGS_F_OFFSET = 2;
-       private static final int MAX_LSP_F_OFFSET = FLAGS_F_OFFSET + FLAGS_F_LENGTH;
-       private static final int MIN_BAND_F_OFFSET = MAX_LSP_F_OFFSET + MAX_LSP_F_LENGTH;
+    private static final int FLAGS_F_OFFSET = 2;
+    private static final int MAX_LSP_F_OFFSET = FLAGS_F_OFFSET + FLAGS_F_LENGTH;
+    private static final int MIN_BAND_F_OFFSET = MAX_LSP_F_OFFSET + MAX_LSP_F_LENGTH;
 
-       private static final int SIZE = MIN_BAND_F_OFFSET + MIN_BAND_F_LENGTH;
+    private static final int SIZE = MIN_BAND_F_OFFSET + MIN_BAND_F_LENGTH;
 
-       public PCEPLoadBalancingObjectParser(final TlvRegistry tlvReg) {
-               super(tlvReg);
-       }
+    public PCEPLoadBalancingObjectParser(final TlvRegistry tlvReg) {
+        super(tlvReg);
+    }
 
-       @Override
-       public LoadBalancing 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.");
-               if (bytes.readableBytes() != SIZE) {
-                       throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + bytes.readableBytes()+ "; Expected: " + SIZE + ".");
-               }
-               final LoadBalancingBuilder builder = new LoadBalancingBuilder();
-               builder.setIgnore(header.isIgnore());
-               builder.setProcessingRule(header.isProcessingRule());
-               bytes.readerIndex(bytes.readerIndex() + MAX_LSP_F_OFFSET);
-               builder.setMaxLsp((short) UnsignedBytes.toInt(bytes.readByte()));
-               builder.setMinBandwidth(new Bandwidth(ByteArray.readBytes(bytes, MIN_BAND_F_LENGTH)));
-               return builder.build();
-       }
+    @Override
+    public LoadBalancing 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.");
+        if (bytes.readableBytes() != SIZE) {
+            throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + bytes.readableBytes() + "; Expected: " + SIZE
+                    + ".");
+        }
+        final LoadBalancingBuilder builder = new LoadBalancingBuilder();
+        builder.setIgnore(header.isIgnore());
+        builder.setProcessingRule(header.isProcessingRule());
+        bytes.readerIndex(bytes.readerIndex() + MAX_LSP_F_OFFSET);
+        builder.setMaxLsp((short) UnsignedBytes.toInt(bytes.readByte()));
+        builder.setMinBandwidth(new Bandwidth(ByteArray.readBytes(bytes, MIN_BAND_F_LENGTH)));
+        return builder.build();
+    }
 
-       @Override
-       public byte[] serializeObject(final Object object) {
-               if (!(object instanceof LoadBalancing)) {
-                       throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass()
-                                       + ". Needed LoadBalancingObject.");
-               }
-               final LoadBalancing specObj = (LoadBalancing) object;
-               final byte[] retBytes = new byte[SIZE];
-               retBytes[MAX_LSP_F_OFFSET] = UnsignedBytes.checkedCast(specObj.getMaxLsp());
-               ByteArray.copyWhole(specObj.getMinBandwidth().getValue(), retBytes, MIN_BAND_F_OFFSET);
-               return ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), retBytes);
-       }
+    @Override
+    public byte[] serializeObject(final Object object) {
+        if (!(object instanceof LoadBalancing)) {
+            throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass()
+                    + ". Needed LoadBalancingObject.");
+        }
+        final LoadBalancing specObj = (LoadBalancing) object;
+        final byte[] retBytes = new byte[SIZE];
+        retBytes[MAX_LSP_F_OFFSET] = UnsignedBytes.checkedCast(specObj.getMaxLsp());
+        ByteArray.copyWhole(specObj.getMinBandwidth().getValue(), retBytes, MIN_BAND_F_OFFSET);
+        return ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), retBytes);
+    }
 }