add documentation to the mapping service TELSDN-568: #close
[lispflowmapping.git] / mappingservice / implementation / src / main / java / org / opendaylight / lispflowmapping / implementation / dao / MappingServiceNoMaskKey.java
index 132a740cd9cca169d6e043b17528ae26ca590388..eb586fc9a55d6299293599589c42108753480418 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2013 Contextream, 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.lispflowmapping.implementation.dao;
 
 import org.opendaylight.lispflowmapping.implementation.util.MaskUtil;
@@ -16,10 +23,6 @@ public class MappingServiceNoMaskKey implements IMappingServiceKey {
         return EID;
     }
 
-    public void setEID(LispAddressContainer eID) {
-        EID = eID;
-    }
-
     public int getMask() {
         if (MaskUtil.isMaskable(EID.getAddress())) {
             return MaskUtil.getMaxMask(EID.getAddress());
@@ -28,10 +31,6 @@ public class MappingServiceNoMaskKey implements IMappingServiceKey {
         }
     }
 
-    public void setMask(int mask) {
-        return;
-    }
-
     @Override
     public int hashCode() {
         final int prime = 31;