blob: 6e3f445f342e4a8d1e7bb7cf13e490a87dd01e1c [file] [log] [blame]
Jian Li75642312017-01-19 14:23:05 -08001/*
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.impl;
17
18import org.onosproject.mapping.MappingStore;
Jian Li95edb592017-01-29 08:42:07 +090019import org.onosproject.mapping.MappingStoreDelegate;
Jian Li75642312017-01-19 14:23:05 -080020
21/**
22 * Implementation of a distributed store for managing mapping information.
23 */
24public class DistributedMappingStore implements MappingStore {
Jian Li95edb592017-01-29 08:42:07 +090025 @Override
26 public void setDelegate(MappingStoreDelegate delegate) {
27
28 }
29
30 @Override
31 public void unsetDelegate(MappingStoreDelegate delegate) {
32
33 }
34
35 @Override
36 public boolean hasDelegate() {
37 return false;
38 }
Jian Li75642312017-01-19 14:23:05 -080039}