blob: 9867d04c49b13027bf1d42373253564a0485c5e5 [file] [log] [blame]
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -08003 *
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
Ray Milkey8c6d00e2015-03-13 14:14:34 -070036 public void purge(Intent intent) {
37
38 }
39
40 @Override
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080041 public Iterable<Intent> getIntents() {
42 return null;
43 }
44
45 @Override
Brian O'Connor38224302016-08-02 22:03:01 -070046 public void addPending(IntentData intentData) {
47
48 }
49
50 @Override
Thomas Vachuskac46af202015-06-03 16:43:27 -070051 public Iterable<IntentData> getIntentData() {
52 return null;
53 }
54
55 @Override
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080056 public long getIntentCount() {
57 return 0;
58 }
59
60 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -080061 public Intent getIntent(Key intentKey) {
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080062 return null;
63 }
64
65 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -080066 public IntentState getIntentState(Key intentKey) {
Ray Milkey1534f8d2015-05-13 15:42:50 -070067 return IntentState.INSTALLED;
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080068 }
69
70 @Override
Ray Milkeyf9af43c2015-02-09 16:45:48 -080071 public List<Intent> getInstallableIntents(Key intentKey) {
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080072 return null;
73 }
74
75 @Override
Jonathan Hart13d3dd92015-02-25 16:09:42 -080076 public boolean isLocal(Key intentKey) {
77 return false;
78 }
79
80 @Override
81 public Iterable<Intent> getPending() {
82 return null;
83 }
84
85 @Override
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080086 public void addListener(IntentListener listener) {
87
88 }
89
90 @Override
91 public void removeListener(IntentListener listener) {
92
93 }
Bri Prebilic Cole09e464b2015-01-07 17:13:54 -080094}