blob: 9b17382ff63542cf43e21f32e152831dd2b0a5b2 [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.api;
18
19import org.onosproject.net.ConnectPoint;
20import org.onosproject.net.flow.TrafficSelector;
21
22/**
23 * API for troubleshooting services, providing static analysis of installed
24 * flows and groups.
25 */
26public interface TroubleshootService {
27
28
29 /**
30 * Requests a static trace be performed for the given traffic selector
31 * starting at the given connect point.
32 *
33 * @param packet description of packet
34 * @param in point at which packet starts
35 * @return a trace result
36 */
37 StaticPacketTrace trace(TrafficSelector packet, ConnectPoint in);
38}