blob: 11352ada8b3db08e17e87bee5fcc4df69add3cf6 [file] [log] [blame]
Himal Kumarb43724d2016-04-29 14:15:57 +10001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Himal Kumarb43724d2016-04-29 14:15:57 +10003 *
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.castor;
17
18/**
19 * Service Interface for Connectivity Manager.
20 */
21public interface ConnectivityManagerService {
22
23 /**
24 * Start to add the initial config by adding route servers.
25 *
26 * @param peer The Route Server
27 */
28 void start(Peer peer);
29
30 /**
31 * Sets up connectivity of the peer being added.
32 * This will set up the connectivity between the Peer and the Route Servers.
33 *
34 * @param peer The Peer to be added.
35 */
36 void setUpConnectivity(Peer peer);
37
38 /**
39 * Provisions the layer two flows for the Peer.
40 *
41 * @param peer The Peer for which layer 2 is to be configured.
42 */
43 void setUpL2(Peer peer);
44
45 /**
46 * Deletes a BGP Peer.
47 * This will delete all the flow entries corresponding to the Peer and update the other ones.
48 *
49 * @param peer The Peer to be deleted.
50 */
51 void deletePeer(Peer peer);
52
53}