Prepare the YANG models for RESTCONF
[lispflowmapping.git] / mappingservice / implementation / src / main / java / org / opendaylight / lispflowmapping / implementation / LispMappingService.java
index cbd2c60e89783d57f11152b53cb5ec59191f7b19..9e1d6a789f6e8bf87ad81e47fe4218066f73010f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Contextream, Inc. and others.  All rights reserved.
+ * Copyright (c) 2014 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,
 
 package org.opendaylight.lispflowmapping.implementation;
 
+import java.util.concurrent.Future;
+
+import org.apache.commons.lang3.tuple.MutablePair;
+import org.apache.commons.lang3.tuple.Pair;
 import org.eclipse.osgi.framework.console.CommandInterpreter;
 import org.eclipse.osgi.framework.console.CommandProvider;
-import org.opendaylight.lispflowmapping.implementation.dao.InMemoryDAO;
+import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
+import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext;
+import org.opendaylight.controller.sal.binding.api.BindingAwareProvider;
+import org.opendaylight.controller.sal.binding.api.NotificationListener;
+import org.opendaylight.controller.sal.binding.api.NotificationService;
+import org.opendaylight.lispflowmapping.implementation.config.ConfigIni;
+import org.opendaylight.lispflowmapping.implementation.dao.MappingServiceKey;
+import org.opendaylight.lispflowmapping.implementation.dao.MappingServiceKeyUtil;
+import org.opendaylight.lispflowmapping.implementation.dao.MappingServiceNoMaskKey;
 import org.opendaylight.lispflowmapping.implementation.lisp.MapResolver;
 import org.opendaylight.lispflowmapping.implementation.lisp.MapServer;
+import org.opendaylight.lispflowmapping.implementation.serializer.LispMessage;
+import org.opendaylight.lispflowmapping.implementation.util.LispAFIConvertor;
+import org.opendaylight.lispflowmapping.implementation.util.LispNotificationHelper;
 import org.opendaylight.lispflowmapping.interfaces.dao.ILispDAO;
 import org.opendaylight.lispflowmapping.interfaces.dao.ILispTypeConverter;
-import org.opendaylight.lispflowmapping.interfaces.dao.IQueryAll;
 import org.opendaylight.lispflowmapping.interfaces.dao.IRowVisitor;
 import org.opendaylight.lispflowmapping.interfaces.lisp.IFlowMapping;
-import org.opendaylight.lispflowmapping.interfaces.lisp.IMapResolver;
-import org.opendaylight.lispflowmapping.interfaces.lisp.IMapServer;
-import org.opendaylight.lispflowmapping.type.lisp.MapNotify;
-import org.opendaylight.lispflowmapping.type.lisp.MapRegister;
-import org.opendaylight.lispflowmapping.type.lisp.MapReply;
-import org.opendaylight.lispflowmapping.type.lisp.MapRequest;
-import org.opendaylight.lispflowmapping.type.lisp.address.LispAddress;
-import org.opendaylight.lispflowmapping.type.lisp.address.LispIpv4Address;
-import org.opendaylight.lispflowmapping.type.lisp.address.LispIpv6Address;
+import org.opendaylight.lispflowmapping.interfaces.lisp.IFlowMappingShell;
+import org.opendaylight.lispflowmapping.interfaces.lisp.IMapNotifyHandler;
+import org.opendaylight.lispflowmapping.interfaces.lisp.IMapRequestResultHandler;
+import org.opendaylight.lispflowmapping.interfaces.lisp.IMapResolverAsync;
+import org.opendaylight.lispflowmapping.interfaces.lisp.IMapServerAsync;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.AddMapping;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.EidToLocatorRecord;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.LfmControlPlaneService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.MapNotify;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.MapRegister;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.MapReply;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.MapRequest;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.RequestMapping;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.SendMapNotifyInputBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.SendMapReplyInputBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.SendMapRequestInputBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.lispaddress.LispAddressContainer;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.lispaddress.lispaddresscontainer.address.ipv4.Ipv4AddressBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.mapnotifymessage.MapNotifyBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.mapreplymessage.MapReplyBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.maprequestmessage.MapRequestBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.transportaddress.TransportAddress;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.transportaddress.TransportAddressBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.AddKeyInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.AddKeyOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.AddMappingInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.AddMappingOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetKeyInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetKeyOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetKeyWithRefInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetKeyWithRefOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetMappingInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetMappingOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetMappingWithRefInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.GetMappingWithRefOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.LfmMappingDatabaseService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.RemoveKeyInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.RemoveKeyWithRefInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.RemoveMappingInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.RemoveMappingWithRefInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.UpdateKeyInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.UpdateKeyWithRefInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.UpdateMappingInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mapping.database.rev150314.UpdateMappingWithRefInput;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Address;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv6Address;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.PortNumber;
+import org.opendaylight.yangtools.yang.binding.Notification;
+import org.opendaylight.yangtools.yang.common.RpcResult;
 import org.osgi.framework.BundleContext;
 import org.osgi.framework.FrameworkUtil;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-public class LispMappingService implements CommandProvider, IFlowMapping {
-    protected static final Logger logger = LoggerFactory.getLogger(LispMappingService.class);
+public class LispMappingService implements CommandProvider, IFlowMapping, IFlowMappingShell, BindingAwareProvider,
+        IMapRequestResultHandler, IMapNotifyHandler, LfmMappingDatabaseService {
+    protected static final Logger LOG = LoggerFactory.getLogger(LispMappingService.class);
 
+    private static final ConfigIni configIni = new ConfigIni();
     private ILispDAO lispDao = null;
-    private IMapResolver mapResolver;
-    private IMapServer mapServer;
+    private IMapResolverAsync mapResolver;
+    private IMapServerAsync mapServer;
+    private volatile boolean shouldIterateMask;
+    private volatile boolean shouldAuthenticate;
+    private volatile boolean smr = configIni.smrIsSet();
+    private ThreadLocal<MapReply> tlsMapReply = new ThreadLocal<MapReply>();
+    private ThreadLocal<MapNotify> tlsMapNotify = new ThreadLocal<MapNotify>();
+    private ThreadLocal<Pair<MapRequest, TransportAddress>> tlsMapRequest = new ThreadLocal<Pair<MapRequest, TransportAddress>>();
+
+    private LfmControlPlaneService lispSB = null;
+
+    private ProviderContext session;
+
+    private NotificationService notificationService;
 
-    public static void main(String[] args) throws Exception {
-        LispMappingService serv = new LispMappingService();
-        serv.setLispDao(new InMemoryDAO());
-        serv.init();
+    class LispIpv4AddressInMemoryConverter implements ILispTypeConverter<Ipv4Address, Integer> {
     }
 
-    class LispIpv4AddressInMemoryConverter implements ILispTypeConverter<LispIpv4Address, Integer> {
+    class LispIpv6AddressInMemoryConverter implements ILispTypeConverter<Ipv6Address, Integer> {
     }
 
-    class LispIpv6AddressInMemoryConverter implements ILispTypeConverter<LispIpv6Address, Integer> {
+    class MappingServiceKeyConvertor implements ILispTypeConverter<MappingServiceKey, Integer> {
     }
 
-    void setLispDao(ILispDAO dao) {
-        logger.info("LispDAO set in LispMappingService");
+    class MappingServiceNoMaskKeyConvertor implements ILispTypeConverter<MappingServiceNoMaskKey, Integer> {
+    }
+
+    void setBindingAwareBroker(BindingAwareBroker bindingAwareBroker) {
+        LOG.trace("BindingAwareBroker set!");
+        BundleContext bundleContext = FrameworkUtil.getBundle(this.getClass()).getBundleContext();
+        bindingAwareBroker.registerProvider(this, bundleContext);
+    }
+
+    void unsetBindingAwareBroker(BindingAwareBroker bindingAwareBroker) {
+        LOG.debug("BindingAwareBroker was unset in LispMappingService");
+    }
+
+    public void basicInit(ILispDAO dao) {
         lispDao = dao;
         mapResolver = new MapResolver(dao);
         mapServer = new MapServer(dao);
-        logger.debug("Registering LispIpv4Address");
-        lispDao.register(LispIpv4AddressInMemoryConverter.class);
-        logger.debug("Registering LispIpv6Address");
-        lispDao.register(LispIpv6AddressInMemoryConverter.class);
+    }
+
+    void setLispDao(ILispDAO dao) {
+        LOG.trace("LispDAO set in LispMappingService");
+        basicInit(dao);
     }
 
     void unsetLispDao(ILispDAO dao) {
-        logger.debug("LispDAO was unset in LispMappingService");
+        LOG.trace("LispDAO was unset in LispMappingService");
         mapServer = null;
         mapResolver = null;
         lispDao = null;
     }
 
     public void init() {
-        logger.debug("LISP (RFC6830) Mapping Service is initialized!");
-        registerWithOSGIConsole();
+        try {
+            registerWithOSGIConsole();
+            LOG.info("LISP (RFC6830) Mapping Service init finished");
+        } catch (Exception e) {
+            LOG.error(e.getStackTrace().toString());
+        }
     }
 
     private void registerWithOSGIConsole() {
@@ -79,67 +161,328 @@ public class LispMappingService implements CommandProvider, IFlowMapping {
         bundleContext.registerService(CommandProvider.class.getName(), this, null);
     }
 
-
     public void destroy() {
-        logger.debug("LISP (RFC6830) Mapping Service is destroyed!");
+        LOG.info("LISP (RFC6830) Mapping Service is destroyed!");
         mapResolver = null;
         mapServer = null;
     }
 
-
     public void _removeEid(final CommandInterpreter ci) {
-        lispDao.remove(new LispIpv4Address(ci.nextArgument()));
+        LispAddressContainer eid = LispAFIConvertor.getIPContainer(ci.nextArgument());
+        lispDao.remove(MappingServiceKeyUtil.generateMappingServiceKey(eid));
     }
 
     public void _dumpAll(final CommandInterpreter ci) {
-        ci.println("EID\tRLOCs");
-        if (lispDao instanceof IQueryAll) {
-            ((IQueryAll) lispDao).getAll(new IRowVisitor() {
-                String lastKey = "";
-
-                public void visitRow(Class<?> keyType, Object keyId, String valueKey, Object value) {
-                    String key = keyType.getSimpleName() + "#" + keyId;
-                    if (!lastKey.equals(key)) {
-                        ci.println();
-                        ci.print(key + "\t");
-                    }
-                    ci.print(valueKey + "=" + value + "\t");
-                    lastKey = key;
+        ci.print(printMappings());
+    }
+
+    public String printMappings() {
+        final StringBuffer sb = new StringBuffer();
+        sb.append("EID\tRLOCs\n");
+        lispDao.getAll(new IRowVisitor() {
+            String lastKey = "";
+
+            public void visitRow(Object keyId, String valueKey, Object value) {
+                String key = keyId.getClass().getSimpleName() + "#" + keyId;
+                if (!lastKey.equals(key)) {
+                    sb.append("\n" + key + "\t");
                 }
-            });
-            ci.println();
-        } else {
-            ci.println("Not implemented by this DAO");
+                sb.append(valueKey + "=" + value + "\t");
+                lastKey = key;
+            }
+        });
+        sb.append("\n");
+        return sb.toString();
+    }
+
+    public void _setShouldOverwriteRlocs(final CommandInterpreter ci) {
+        try {
+            boolean shouldOverwriteRloc = Boolean.parseBoolean(ci.nextArgument());
+            setOverwrite(shouldOverwriteRloc);
+        } catch (Exception e) {
+            ci.println("Bad Usage!!");
         }
-        return;
+
+    }
+
+    public void _addDefaultPassword(final CommandInterpreter ci) {
+        addDefaultKeyIPv4();
     }
 
+    public void addDefaultKeyIPv4() {
+        LispAddressContainer address = LispAFIConvertor.toContainer(
+                new Ipv4AddressBuilder().setIpv4Address(new Ipv4Address("0.0.0.0")).build());
+        addAuthenticationKey(address, 0, "password");
+    }
 
     public String getHelp() {
         StringBuffer help = new StringBuffer();
         help.append("---LISP Mapping Service---\n");
-        help.append("\t dumpAll        - Dump all current EID -> RLOC mapping\n");
-        help.append("\t removeEid      - Remove a single LispIPv4Address Eid\n");
+        help.append("\t dumpAll                               - Dump all current EID -> RLOC mappings\n");
+        help.append("\t removeEid <EID>                       - Remove a single EID (/32 or /128)\n");
+        help.append("\t setShouldOverwriteRlocs <true|false>  - Set the map server's behavior regarding existing RLOCs\n");
+        help.append("\t addDefaultPassword                    - Add \"password\" as default password for IPv4 EIDs");
         return help.toString();
     }
 
     public MapReply handleMapRequest(MapRequest request) {
-        return mapResolver.handleMapRequest(request);
+        return handleMapRequest(request, smr);
+    }
+
+    public MapReply handleMapRequest(MapRequest request, boolean smr) {
+        tlsMapReply.set(null);
+        tlsMapRequest.set(null);
+        mapResolver.handleMapRequest(request, smr, this);
+        // After this invocation we assume that the thread local is filled with
+        // the reply
+        if (tlsMapRequest.get() != null) {
+            SendMapRequestInputBuilder smrib = new SendMapRequestInputBuilder();
+            new MapRequestBuilder(tlsMapRequest.get().getLeft());
+            smrib.setMapRequest(new MapRequestBuilder(tlsMapRequest.get().getLeft()).build());
+            smrib.setTransportAddress(tlsMapRequest.get().getRight());
+            getLispSB().sendMapRequest(smrib.build());
+            return null;
+        } else {
+            return tlsMapReply.get();
+        }
+
     }
 
     public MapNotify handleMapRegister(MapRegister mapRegister) {
-        return mapServer.handleMapRegister(mapRegister);
+        return handleMapRegister(mapRegister, smr);
+    }
+
+    public MapNotify handleMapRegister(MapRegister mapRegister, boolean smr) {
+        tlsMapNotify.set(null);
+        mapServer.handleMapRegister(mapRegister, smr, this);
+        // After this invocation we assume that the thread local is filled with
+        // the reply
+        return tlsMapNotify.get();
     }
 
-    public String getAuthenticationKey(LispAddress address, int maskLen) {
+    public String getAuthenticationKey(LispAddressContainer address, int maskLen) {
         return mapServer.getAuthenticationKey(address, maskLen);
     }
 
-    public boolean removeAuthenticationKey(LispAddress address, int maskLen) {
-        return mapServer.removeAuthenticationKey(address, maskLen);
+    public void removeAuthenticationKey(LispAddressContainer address, int maskLen) {
+        mapServer.removeAuthenticationKey(address, maskLen);
+    }
+
+    public void addAuthenticationKey(LispAddressContainer address, int maskLen, String key) {
+        mapServer.addAuthenticationKey(address, maskLen, key);
+    }
+
+    public void removeMapping(LispAddressContainer address, int maskLen) {
+        mapServer.removeMapping(address, maskLen, smr, this);
+    }
+
+    public boolean shouldIterateMask() {
+        return this.shouldIterateMask;
+    }
+
+    public boolean shouldUseSmr() {
+        return this.smr;
+    }
+
+    public void setShouldUseSmr(boolean smr) {
+        this.smr = smr;
+    }
+
+    public void setShouldIterateMask(boolean shouldIterateMask) {
+        this.shouldIterateMask = shouldIterateMask;
+        this.mapResolver.setShouldIterateMask(shouldIterateMask);
+        this.mapServer.setShouldIterateMask(shouldIterateMask);
+    }
+
+    public void setShouldAuthenticate(boolean shouldAuthenticate) {
+        this.shouldAuthenticate = shouldAuthenticate;
+        this.mapResolver.setShouldAuthenticate(shouldAuthenticate);
+        this.mapServer.setShouldAuthenticate(shouldAuthenticate);
+    }
+
+    public boolean shouldAuthenticate() {
+        return shouldAuthenticate;
+    }
+
+    @Override
+    public void onSessionInitiated(ProviderContext session) {
+        LOG.info("Lisp Consumer session initialized!");
+        notificationService = session.getSALService(NotificationService.class);
+        registerNotificationListener(AddMapping.class, new MapRegisterNotificationHandler());
+        registerNotificationListener(RequestMapping.class, new MapRequestNotificationHandler());
+        session.addRpcImplementation(LfmMappingDatabaseService.class, this);
+        this.session = session;
+    }
+
+    public <T extends Notification> void registerNotificationListener(Class<T> notificationType, NotificationListener<T> listener) {
+        notificationService.registerNotificationListener(notificationType, listener);
+    }
+
+    private class MapRegisterNotificationHandler implements NotificationListener<AddMapping> {
+
+        @Override
+        public void onNotification(AddMapping mapRegisterNotification) {
+            MapNotify mapNotify = handleMapRegister(mapRegisterNotification.getMapRegister(), smr);
+            if (mapNotify != null) {
+                TransportAddressBuilder tab = new TransportAddressBuilder();
+                tab.setIpAddress(mapRegisterNotification.getTransportAddress().getIpAddress());
+                tab.setPort(new PortNumber(LispMessage.PORT_NUM));
+                SendMapNotifyInputBuilder smnib = new SendMapNotifyInputBuilder();
+                smnib.setMapNotify(new MapNotifyBuilder(mapNotify).build());
+                smnib.setTransportAddress(tab.build());
+                getLispSB().sendMapNotify(smnib.build());
+            } else {
+                LOG.warn("got null map notify");
+            }
+
+        }
+    }
+
+    private class MapRequestNotificationHandler implements NotificationListener<RequestMapping> {
+
+        @Override
+        public void onNotification(RequestMapping mapRequestNotification) {
+            MapReply mapReply = handleMapRequest(mapRequestNotification.getMapRequest());
+            if (mapReply != null) {
+                SendMapReplyInputBuilder smrib = new SendMapReplyInputBuilder();
+                smrib.setMapReply((new MapReplyBuilder(mapReply).build()));
+                smrib.setTransportAddress(mapRequestNotification.getTransportAddress());
+                getLispSB().sendMapReply(smrib.build());
+            } else {
+                LOG.warn("got null map reply");
+            }
+        }
+    }
+
+    private LfmControlPlaneService getLispSB() {
+        if (lispSB == null) {
+            lispSB = session.getRpcService(LfmControlPlaneService.class);
+        }
+        return lispSB;
+    }
+
+    public void handleMapReply(MapReply reply) {
+        tlsMapReply.set(reply);
+    }
+
+    public void handleMapNotify(MapNotify notify) {
+        tlsMapNotify.set(notify);
+    }
+
+    public void handleSMR(MapRequest smr, LispAddressContainer subscriber) {
+        LOG.debug("Sending SMR to " + subscriber.toString());
+        SendMapRequestInputBuilder smrib = new SendMapRequestInputBuilder();
+        smrib.setMapRequest(new MapRequestBuilder(smr).build());
+        smrib.setTransportAddress(LispNotificationHelper.getTransportAddressFromContainer(subscriber));
+        getLispSB().sendMapRequest(smrib.build());
+
+    }
+
+    @Override
+    public void handleNonProxyMapRequest(MapRequest mapRequest, TransportAddress transportAddress) {
+        tlsMapRequest.set(new MutablePair<MapRequest, TransportAddress>(mapRequest, transportAddress));
+    }
+
+    @Override
+    public void clean() {
+        lispDao.removeAll();
+    }
+
+    @Override
+    public boolean shouldOverwrite() {
+        return mapServer.shouldOverwrite();
+    }
+
+    @Override
+    public void setOverwrite(boolean overwrite) {
+        mapServer.setOverwrite(overwrite);
+    }
+
+    @Override
+    public Future<RpcResult<AddKeyOutput>> addKey(AddKeyInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<AddMappingOutput>> addMapping(AddMappingInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<GetKeyOutput>> getKey(GetKeyInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<GetKeyWithRefOutput>> getKeyWithRef(
+            GetKeyWithRefInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<GetMappingOutput>> getMapping(GetMappingInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<GetMappingWithRefOutput>> getMappingWithRef(
+            GetMappingWithRefInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> removeKey(RemoveKeyInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> removeKeyWithRef(RemoveKeyWithRefInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> removeMapping(RemoveMappingInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> removeMappingWithRef(
+            RemoveMappingWithRefInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> updateKey(UpdateKeyInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> updateKeyWithRef(UpdateKeyWithRefInput input) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+    @Override
+    public Future<RpcResult<Void>> updateMapping(UpdateMappingInput input) {
+        // TODO Auto-generated method stub
+        return null;
     }
 
-    public boolean addAuthenticationKey(LispAddress address, int maskLen, String key) {
-        return mapServer.addAuthenticationKey(address, maskLen, key);
+    @Override
+    public Future<RpcResult<Void>> updateMappingWithRef(
+            UpdateMappingWithRefInput input) {
+        // TODO Auto-generated method stub
+        return null;
     }
 }