blob: 03f1e753a02221e49d47b71f605a57105dfde25b [file] [log] [blame]
Simon Hunt6fefd852017-11-13 17:09:43 -08001/*
2 * Copyright 2017-present Open Networking Foundation
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.t3.impl;
18
19import org.apache.felix.scr.annotations.Component;
20import org.apache.felix.scr.annotations.Reference;
21import org.apache.felix.scr.annotations.ReferenceCardinality;
22import org.apache.felix.scr.annotations.Service;
23import org.onosproject.net.ConnectPoint;
24import org.onosproject.net.flow.FlowRuleService;
25import org.onosproject.net.flow.TrafficSelector;
26import org.onosproject.net.group.GroupService;
27import org.onosproject.t3.api.StaticPacketTrace;
28import org.onosproject.t3.api.TroubleshootService;
29import org.slf4j.Logger;
30
31import static org.slf4j.LoggerFactory.getLogger;
32
33/**
34 * Designates ...
35 */
36@Service
37@Component(immediate = true)
38public class TroubleshootManager implements TroubleshootService {
39
40 private static final Logger log = getLogger(TroubleshootManager.class);
41
42 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
43 protected FlowRuleService flowRuleService;
44
45 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
46 protected GroupService groupService;
47
48
49
50 @Override
51 public StaticPacketTrace trace(TrafficSelector packet, ConnectPoint in) {
52 return null;
53 }
54}