blob: e3b4c1984f84bff954b1217ffd3dcc08c929a3d4 [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
samuel8d6b0a92015-07-11 13:22:57 +080031 */
32 void createTunnel(TunnelDescription tunnel);
33
34 /**
Hyunsun Moonaab8c672015-10-27 19:42:12 -070035 * Creates a tunnel interface on a given bridge of this device.
36 *
37 * @param bridgeName bridge name
38 * @param tunnel tunnel description
39 * @return true if succeeds, false otherwise
40 */
41 boolean createTunnelInterface(BridgeName bridgeName, TunnelDescription tunnel);
42
43 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070044 * Removes 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 removeTunnel(TunnelDescription tunnel);
49
50 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070051 * Updates a tunnel on this device.
samuel8d6b0a92015-07-11 13:22:57 +080052 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070053 * @param tunnel tunnel descriptor
samuel8d6b0a92015-07-11 13:22:57 +080054 */
55 void updateTunnel(TunnelDescription tunnel);
56
57 /**
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070058 * Returns tunnels created on this device.
samuel8d6b0a92015-07-11 13:22:57 +080059 *
Thomas Vachuskad894b5d2015-07-30 11:59:07 -070060 * @return collection of tunnels
samuel8d6b0a92015-07-11 13:22:57 +080061 */
62 Collection<TunnelDescription> getTunnels();
63
64}