blob: 4fa68174ce813795ff8d45c2796b79ddaa9bdda0 [file] [log] [blame]
samuel8d6b0a92015-07-11 13:22:57 +08001/*
2 * Copyright 2015 Open Networking Laboratory
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 */
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 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070028 * Creates a tunnel on this device.
samuel8d6b0a92015-07-11 13:22:57 +080029 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070030 * @param tunnel tunnel descriptor
Ray Milkeyea125322016-02-16 13:35:09 -080031 * @deprecated 1.3.0 Drake Release
samuel8d6b0a92015-07-11 13:22:57 +080032 */
jiangruie2766822015-11-27 10:17:10 +080033 @Deprecated
samuel8d6b0a92015-07-11 13:22:57 +080034 void createTunnel(TunnelDescription tunnel);
35
36 /**
Hyunsun Moonaab8c672015-10-27 19:42:12 -070037 * Creates a tunnel interface on a given bridge of this device.
38 *
39 * @param bridgeName bridge name
40 * @param tunnel tunnel description
41 * @return true if succeeds, false otherwise
42 */
43 boolean createTunnelInterface(BridgeName bridgeName, TunnelDescription tunnel);
44
45 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070046 * Removes a tunnel on this device.
samuel8d6b0a92015-07-11 13:22:57 +080047 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070048 * @param tunnel tunnel descriptor
samuel8d6b0a92015-07-11 13:22:57 +080049 */
50 void removeTunnel(TunnelDescription tunnel);
51
52 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070053 * Updates a tunnel on this device.
samuel8d6b0a92015-07-11 13:22:57 +080054 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070055 * @param tunnel tunnel descriptor
samuel8d6b0a92015-07-11 13:22:57 +080056 */
57 void updateTunnel(TunnelDescription tunnel);
58
59 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070060 * Returns tunnels created on this device.
samuel8d6b0a92015-07-11 13:22:57 +080061 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070062 * @return collection of tunnels
samuel8d6b0a92015-07-11 13:22:57 +080063 */
64 Collection<TunnelDescription> getTunnels();
65
66}