refactoring of listmappingservice into Northbound (future REST) and Southbound (LISP...
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / type / lisp / address / LispMACAddress.java
index a0486e634a758ee120ca7dd79b604292fb653d20..aec451b5b7e5e2c86d381b1efa870713af10e02d 100644 (file)
@@ -8,7 +8,6 @@
 
 package org.opendaylight.lispflowmapping.type.lisp.address;
 
-import java.nio.ByteBuffer;
 import java.util.Arrays;
 
 import javax.xml.bind.DatatypeConverter;
@@ -23,24 +22,11 @@ public class LispMACAddress extends LispAddress {
         System.arraycopy(mac, 0, this.mac, 0, 6);
     }
 
-    public static LispMACAddress valueOf(ByteBuffer buffer) {
-        throw new RuntimeException("Not implemented");
-    }
 
     public byte[] getMAC() {
         return mac;
     }
 
-    @Override
-    public int getAddressSize() {
-        throw new RuntimeException("Not implemented");
-
-    }
-
-    @Override
-    public void serialize(ByteBuffer buffer) {
-        throw new RuntimeException("Not implemented");
-    }
 
     @Override
     public String toString() {