Merge "Rename static final variable 'logger' to 'LOG'"
[lispflowmapping.git] / mappingservice / northbound / src / main / java / org / opendaylight / lispflowmapping / northbound / MapRegisterNB.java
index 2afa43edd29f86574c4c6663288169866100ecf6..d4fc56d8e3ea4d172a55d8af0d2292b529bd5656 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * 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.lispflowmapping.northbound;
+
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
@@ -14,15 +14,15 @@ import javax.xml.bind.annotation.XmlRootElement;
 
 import org.opendaylight.lispflowmapping.type.lisp.MapRegister;
 
-@XmlRootElement(name="list")
+@XmlRootElement(name="MapRegisterNB")
 @XmlAccessorType(XmlAccessType.NONE)
 
 public class MapRegisterNB {
-       
+
+
        @XmlElement
        String key;
-       
+
        @XmlElement
        MapRegister mapregister;
 
@@ -33,5 +33,7 @@ public class MapRegisterNB {
        public MapRegister getMapRegister() {
                return mapregister;
        }
-       
-}
\ No newline at end of file
+
+
+
+}