blob: 965767be5ab22e3eae46f825e07829f810d75260 [file] [log] [blame]
Jian Lia0bf4592017-02-03 17:43:21 +09001/*
2 * Copyright 2017-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.mapping;
17
Jian Li136fd6c2017-02-10 14:54:59 +090018import org.onosproject.mapping.address.MappingAddress;
19
Jian Lia0bf4592017-02-03 17:43:21 +090020/**
21 * Default mapping key implementation.
22 */
23public class DefaultMappingKey implements MappingKey {
Jian Li136fd6c2017-02-10 14:54:59 +090024 @Override
25 public MappingAddress address() {
26 return null;
27 }
Jian Lia0bf4592017-02-03 17:43:21 +090028}