blob: 2575764310ac597954d52e2096b55eec8ee71cd8 [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;
19import org.onosproject.mapping.instructions.MappingInstruction;
20
21import java.util.List;
22
Jian Lia0bf4592017-02-03 17:43:21 +090023/**
24 * Default mapping value implementation.
25 */
26public class DefaultMappingValue implements MappingValue {
Jian Li136fd6c2017-02-10 14:54:59 +090027
28 @Override
29 public MappingAddress address() {
30 return null;
31 }
32
33 @Override
34 public List<MappingInstruction> instructions() {
35 return null;
36 }
Jian Lia0bf4592017-02-03 17:43:21 +090037}