blob: f0494b112002cc231bd2c1d6fd9c6bc6b097e679 [file] [log] [blame]
Thomas Vachuska48e64e42015-09-22 15:32:55 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska48e64e42015-09-22 15:32:55 -07003 *
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.net.topology;
17
18import org.onosproject.net.DisjointPath;
19import org.onosproject.net.ElementId;
20import org.onosproject.net.Link;
21import org.onosproject.net.Path;
22
23import java.util.Map;
24import java.util.Set;
25
26/**
27 * Test adapter for path service.
28 */
29public class PathServiceAdapter implements PathService {
30 @Override
31 public Set<Path> getPaths(ElementId src, ElementId dst) {
32 return null;
33 }
34
35 @Override
36 public Set<Path> getPaths(ElementId src, ElementId dst, LinkWeight weight) {
37 return null;
38 }
39
40 @Override
Andrey Komarov2398d962016-09-26 15:11:23 +030041 public Set<Path> getPaths(ElementId src, ElementId dst,
42 LinkWeigher weigher) {
43 return null;
44 }
45
46 @Override
Thomas Vachuska48e64e42015-09-22 15:32:55 -070047 public Set<DisjointPath> getDisjointPaths(ElementId src, ElementId dst) {
48 return null;
49 }
50
51 @Override
Andrey Komarov2398d962016-09-26 15:11:23 +030052 public Set<DisjointPath> getDisjointPaths(ElementId src, ElementId dst,
53 LinkWeight weight) {
54 return null;
55 }
56
57 @Override
58 public Set<DisjointPath> getDisjointPaths(ElementId src, ElementId dst,
59 LinkWeigher weigher) {
Thomas Vachuska48e64e42015-09-22 15:32:55 -070060 return null;
61 }
62
63 @Override
64 public Set<DisjointPath> getDisjointPaths(ElementId src, ElementId dst,
65 Map<Link, Object> riskProfile) {
66 return null;
67 }
68
69 @Override
70 public Set<DisjointPath> getDisjointPaths(ElementId src, ElementId dst,
71 LinkWeight weight,
72 Map<Link, Object> riskProfile) {
73 return null;
74 }
Andrey Komarov2398d962016-09-26 15:11:23 +030075
76 @Override
77 public Set<DisjointPath> getDisjointPaths(ElementId src, ElementId dst,
78 LinkWeigher weigher,
79 Map<Link, Object> riskProfile) {
80 return null;
81 }
Thomas Vachuska48e64e42015-09-22 15:32:55 -070082}