Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / vendorextension / v6extension / V6Error.java
index c52c3f56b800a57ff247bc4a7246db2b3065c49d..dfe931f448d9ca1a81128befe955e47691cfeb5b 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * 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.controller.protocol_plugin.openflow.vendorextension.v6extension;
 
 import java.nio.ByteBuffer;
@@ -6,21 +13,21 @@ import java.util.Arrays;
 import org.openflow.protocol.OFError;
 
 public class V6Error extends OFError {
-       private static final long serialVersionUID = 1L;
-       public static int MINIMUM_LENGTH = 20;//OfHdr(8) + NXET_VENDOR(2) + NXEC_VENDOR_ERROR(2) + struct nx_vendor_error(8)
-       public static final short NICIRA_VENDOR_ERRORTYPE = (short)0xb0c2;
-       protected int V6VendorId;
+        private static final long serialVersionUID = 1L;
+        public static int MINIMUM_LENGTH = 20;//OfHdr(8) + NXET_VENDOR(2) + NXEC_VENDOR_ERROR(2) + struct nx_vendor_error(8)
+        public static final short NICIRA_VENDOR_ERRORTYPE = (short)0xb0c2;
+        protected int V6VendorId;
     protected short V6VendorErrorType;
     protected short V6VendorErrorCode;
     protected byte[] V6ErrorData;
-    
+
     public V6Error(OFError e) {
         this.length = (short)e.getLengthU();
         this.errorType = e.getErrorType();
         this.errorCode = e.getErrorCode();
         this.xid = e.getXid();
     }
-    
+
     @Override
     public void readFrom(ByteBuffer data) {
         this.V6VendorId = data.getInt();
@@ -30,37 +37,37 @@ public class V6Error extends OFError {
         if (dataLength > 0) {
             this.V6ErrorData = new byte[dataLength];
             data.get(this.V6ErrorData);
-        }   
+        }
     }
-    
+
     /**
      * @return the V6VendorId
      */
     public int getVendorId() {
         return V6VendorId;
     }
-    
+
     /**
      * @return the V6VendorErrorType
      */
     public short getVendorErrorType() {
         return V6VendorErrorType;
     }
-    
+
     /**
      * @return the VendorErrorType
      */
     public short getVendorErrorCode() {
         return V6VendorErrorCode;
     }
-    
+
     /**
      * @return the Error Bytes
      */
     public byte[] getError() {
         return V6ErrorData;
     }
-    
+
     @Override
     public int hashCode() {
         final int prime = 31;