blob: 7c82672c874e21490224bc7b3ac794ff30b44279 [file] [log] [blame]
Jian Li451cea32016-10-04 15:27:50 +09001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.lisp.ctl;
17
Jian Liafe2d3f2016-11-01 02:49:07 +090018import org.onosproject.lisp.msg.protocols.LispMapNotify;
Jian Li451cea32016-10-04 15:27:50 +090019import org.onosproject.lisp.msg.protocols.LispMessage;
20
21/**
22 * LISP map server class.
23 * Handles map-register message and acknowledges with map-notify message.
24 */
Jian Li6322a362016-10-31 00:57:19 +090025public class LispMapServer {
26
Jian Liafe2d3f2016-11-01 02:49:07 +090027 public LispMapNotify processMapRegister(LispMessage message) {
28 // TODO: need to implement map-register message processing logic
Jian Li451cea32016-10-04 15:27:50 +090029 return null;
30 }
31}