blob: 40180611b32054600515bc63e6c53d96d3db8c55 [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.statistic;
18
19import org.onosproject.core.ApplicationId;
20import org.onosproject.core.GroupId;
21import org.onosproject.net.ConnectPoint;
22import org.onosproject.net.Link;
23import org.onosproject.net.Path;
24import org.onosproject.net.flow.FlowRule;
25
26import java.util.Optional;
27
28/**
29 * Test adapter for statistics service.
30 */
31public class StatisticServiceAdapter implements StatisticService {
32 @Override
33 public Load load(Link link) {
34 return null;
35 }
36
37 @Override
38 public Load load(ConnectPoint connectPoint) {
39 return null;
40 }
41
42 @Override
43 public Link max(Path path) {
44 return null;
45 }
46
47 @Override
48 public Link min(Path path) {
49 return null;
50 }
51
52 @Override
53 public FlowRule highestHitter(ConnectPoint connectPoint) {
54 return null;
55 }
56
57 @Override
58 public Load load(Link link, ApplicationId appId, Optional<GroupId> groupId) {
59 return null;
60 }
61}