blob: f9fe65be09e665ed792df73b499b898b9a63e45a [file] [log] [blame]
Yi Tsengc927a062017-05-02 15:02:37 -07001/*
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 */
16
17package org.onosproject.net.intent;
18
19import java.util.Map;
20
21/**
22 * Test adapter for Intent extension service.
23 */
24public class IntentExtensionServiceAdapter implements IntentExtensionService {
25 @Override
26 public <T extends Intent> void registerCompiler(Class<T> cls, IntentCompiler<T> compiler) {
27
28 }
29
30 @Override
31 public <T extends Intent> void unregisterCompiler(Class<T> cls) {
32
33 }
34
35 @Override
36 public Map<Class<? extends Intent>, IntentCompiler<? extends Intent>> getCompilers() {
37 return null;
38 }
39
40 @Override
41 public <T extends Intent> void registerInstaller(Class<T> cls, IntentInstaller<T> installer) {
42
43 }
44
45 @Override
46 public <T extends Intent> void unregisterInstaller(Class<T> cls) {
47
48 }
49
50 @Override
51 public Map<Class<? extends Intent>, IntentInstaller<? extends Intent>> getInstallers() {
52 return null;
53 }
54
55 @Override
56 public <T extends Intent> IntentInstaller<T> getInstaller(Class<T> cls) {
57 return null;
58 }
59}