aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/core/net/src/test/java/org/onosproject/app/impl/FeaturesServiceAdapter.java
blob: fc19b0a162d7d49f8202d3602a2af05b50a6cd83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 * Copyright 2015 Open Networking Laboratory
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onosproject.app.impl;

import org.apache.karaf.features.Feature;
import org.apache.karaf.features.Repository;

import java.net.URI;
import java.util.EnumSet;
import java.util.Set;

/**
 * Adapter for testing against Apache Karaf feature service.
 */
public class FeaturesServiceAdapter implements org.apache.karaf.features.FeaturesService {
    @Override
    public void validateRepository(URI uri) throws Exception {

    }

    @Override
    public void addRepository(URI uri) throws Exception {

    }

    @Override
    public void addRepository(URI uri, boolean install) throws Exception {

    }

    @Override
    public void removeRepository(URI uri) throws Exception {

    }

    @Override
    public void removeRepository(URI uri, boolean uninstall) throws Exception {

    }

    @Override
    public void restoreRepository(URI uri) throws Exception {

    }

    @Override
    public Repository[] listRepositories() {
        return new Repository[0];
    }

    @Override
    public Repository getRepository(String repoName) {
        return null;
    }

    @Override
    public Repository getRepository(URI uri) {
        return null;
    }

    @Override
    public String getRepositoryName(URI uri) {
        return null;
    }

    @Override
    public void installFeature(String name) throws Exception {

    }

    @Override
    public void installFeature(String name, EnumSet<Option> options) throws Exception {

    }

    @Override
    public void installFeature(String name, String version) throws Exception {

    }

    @Override
    public void installFeature(String name, String version, EnumSet<Option> options) throws Exception {

    }

    @Override
    public void installFeature(Feature f, EnumSet<Option> options) throws Exception {

    }

    @Override
    public void installFeatures(Set<Feature> features, EnumSet<Option> options) throws Exception {

    }

    @Override
    public void uninstallFeature(String name, EnumSet<Option> options) throws Exception {

    }

    @Override
    public void uninstallFeature(String name) throws Exception {

    }

    @Override
    public void uninstallFeature(String name, String version, EnumSet<Option> options) throws Exception {

    }

    @Override
    public void uninstallFeature(String name, String version) throws Exception {

    }

    @Override
    public Feature[] listFeatures() throws Exception {
        return new Feature[0];
    }

    @Override
    public Feature[] listInstalledFeatures() {
        return new Feature[0];
    }

    @Override
    public boolean isInstalled(Feature f) {
        return false;
    }

    @Override
    public Feature[] getFeatures(String name, String version) throws Exception {
        return new Feature[0];
    }

    @Override
    public Feature[] getFeatures(String name) throws Exception {
        return new Feature[0];
    }

    @Override
    public Feature getFeature(String name, String version) throws Exception {
        return null;
    }

    @Override
    public Feature getFeature(String name) throws Exception {
        return null;
    }

    @Override
    public void refreshRepository(URI uri) throws Exception {

    }
}