[ONOS-4718] Deserialize addresses from LISP control message class

With this commit, we try to deserilize all LispAfiAddress from
all LISP control message classes.

Change-Id: Iaf911bff90c45a70859285e426dc1649c3e6db32
diff --git a/protocols/lisp/msg/src/test/java/org/onosproject/lisp/msg/types/LispLcafAddressTest.java b/protocols/lisp/msg/src/test/java/org/onosproject/lisp/msg/types/LispLcafAddressTest.java
index 99077d1..e0b61b2 100644
--- a/protocols/lisp/msg/src/test/java/org/onosproject/lisp/msg/types/LispLcafAddressTest.java
+++ b/protocols/lisp/msg/src/test/java/org/onosproject/lisp/msg/types/LispLcafAddressTest.java
@@ -57,6 +57,6 @@
         assertThat(lcafAddress.getReserved1(), is((byte) 0x01));
         assertThat(lcafAddress.getReserved2(), is((byte) 0x01));
         assertThat(lcafAddress.getFlag(), is((byte) 0x01));
-        assertThat(lcafAddress.getLength(), is((byte) 0x01));
+        assertThat(lcafAddress.getLength(), is((short) 1));
     }
 }