blob: 9d305e8c8c6e268f2e8e0765145ee5a13e346ecf [file] [log] [blame]
samuel8d6b0a92015-07-11 13:22:57 +08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
samuel8d6b0a92015-07-11 13:22:57 +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 */
16package org.onosproject.net.behaviour;
17
18import java.util.Collection;
19
20import org.onosproject.net.driver.HandlerBehaviour;
21
22/**
23 * Behaviour for handling various drivers for tunnel configuration.
24 */
25public interface TunnelConfig extends HandlerBehaviour {
26
27 /**
Hyunsun Moonaab8c672015-10-27 19:42:12 -070028 * Creates a tunnel interface on a given bridge of this device.
29 *
30 * @param bridgeName bridge name
31 * @param tunnel tunnel description
32 * @return true if succeeds, false otherwise
33 */
34 boolean createTunnelInterface(BridgeName bridgeName, TunnelDescription tunnel);
35
36 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070037 * Removes a tunnel on this device.
samuel8d6b0a92015-07-11 13:22:57 +080038 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070039 * @param tunnel tunnel descriptor
samuel8d6b0a92015-07-11 13:22:57 +080040 */
41 void removeTunnel(TunnelDescription tunnel);
42
43 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070044 * Updates a tunnel on this device.
samuel8d6b0a92015-07-11 13:22:57 +080045 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070046 * @param tunnel tunnel descriptor
samuel8d6b0a92015-07-11 13:22:57 +080047 */
48 void updateTunnel(TunnelDescription tunnel);
49
50 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070051 * Returns tunnels created on this device.
samuel8d6b0a92015-07-11 13:22:57 +080052 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070053 * @return collection of tunnels
samuel8d6b0a92015-07-11 13:22:57 +080054 */
55 Collection<TunnelDescription> getTunnels();
56
57}