blob: 47f51d7a9f986183633071b2a94f91e60a95ac2b [file] [log] [blame]
Pier Ventref5d72362016-07-17 12:02:14 +02001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Pier Ventref5d72362016-07-17 12:02:14 +02003 *
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.behaviour;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.net.driver.HandlerBehaviour;
21
22import java.util.Collection;
23
24/**
25 * Behaviour for handling various drivers for mirroring configurations.
26 */
27@Beta
28public interface MirroringConfig extends HandlerBehaviour {
29
30 /**
31 * Adds a mirroring with a given description.
32 *
33 * @param bridge the bridge name
34 * @param mirroringDescription mirroring description
35 * @return true if succeeds, or false
36 */
37 boolean addMirroring(BridgeName bridge, MirroringDescription mirroringDescription);
38
39 /**
40 * Removes a mirroring.
41 *
42 * @param mirroringName mirroring name
43 */
44 void deleteMirroring(MirroringName mirroringName);
45
46 /**
47 * Returns a collection of MirroringStatistics.
48 *
49 * @return statistics collection
50 */
51 Collection<MirroringStatistics> getMirroringStatistics();
52
53}