blob: d600dde55b3a8368f588352b4dc16eac77165511 [file] [log] [blame]
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -08001/*
2 * Copyright 2015 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.List;
20
21/**
22 * Test adapter for intent service.
23 */
24public class IntentServiceAdapter implements IntentService {
25 @Override
26 public void submit(Intent intent) {
27
28 }
29
30 @Override
31 public void withdraw(Intent intent) {
32
33 }
34
35 @Override
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080036 public Iterable<Intent> getIntents() {
37 return null;
38 }
39
40 @Override
41 public long getIntentCount() {
42 return 0;
43 }
44
45 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -080046 public Intent getIntent(Key intentKey) {
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080047 return null;
48 }
49
50 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -080051 public IntentState getIntentState(Key intentKey) {
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080052 return null;
53 }
54
55 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -080056 public List<Intent> getInstallableIntents(Key intentKey) {
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080057 return null;
58 }
59
60 @Override
61 public void addListener(IntentListener listener) {
62
63 }
64
65 @Override
66 public void removeListener(IntentListener listener) {
67
68 }
69}