liblldp: final parameters
[controller.git] / opendaylight / commons / liblldp / src / main / java / org / opendaylight / controller / liblldp / CustomTLVKey.java
index 7bc631e5a652be31b1b7b430784cf04eb43b945b..fd5c2100632fc26ef921fcceed3c82318c8a51b1 100644 (file)
@@ -1,6 +1,11 @@
-/**
+/*
+ * Copyright (c) 2013 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.liblldp;
 
 public class CustomTLVKey {
@@ -12,7 +17,7 @@ public class CustomTLVKey {
      * @param oui
      * @param subtype
      */
-    public CustomTLVKey(int oui, byte subtype) {
+    public CustomTLVKey(final int oui, final byte subtype) {
         this.oui = oui;
         this.subtype = subtype;
     }
@@ -23,6 +28,7 @@ public class CustomTLVKey {
     public int getOui() {
         return oui;
     }
+
     /**
      * @return the subtype
      */
@@ -40,7 +46,7 @@ public class CustomTLVKey {
     }
 
     @Override
-    public boolean equals(Object obj) {
+    public boolean equals(final Object obj) {
         if (this == obj) {
             return true;
         }
@@ -65,5 +71,4 @@ public class CustomTLVKey {
         return true;
     }
 
-
 }