blob: cfa089ac6cc43a31ca5577ea85021c61a05bae07 [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.sdnip;
Jonathan Hart0b04bed2014-10-16 16:39:19 -070017
18import java.util.Collection;
19
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.sdnip.bgp.BgpRouteEntry;
21import org.onosproject.sdnip.bgp.BgpSession;
Jonathan Hart0b04bed2014-10-16 16:39:19 -070022
23/**
24 * Service interface exported by SDN-IP.
25 */
26public interface SdnIpService {
27 /**
Pavlin Radoslavov0c84da82014-11-07 17:53:34 -080028 * Gets the BGP sessions.
29 *
30 * @return the BGP sessions
31 */
32 public Collection<BgpSession> getBgpSessions();
33
34 /**
Jonathan Hart0b04bed2014-10-16 16:39:19 -070035 * Gets the BGP routes.
36 *
37 * @return the BGP routes
38 */
39 public Collection<BgpRouteEntry> getBgpRoutes();
40
41 /**
42 * Gets all the routes known to SDN-IP.
43 *
44 * @return the SDN-IP routes
45 */
46 public Collection<RouteEntry> getRoutes();
Jonathan Hartec2df012014-10-23 16:40:24 -070047
48 /**
49 * Changes whether this SDN-IP instance is the primary or not based on the
50 * boolean parameter.
51 *
52 * @param isPrimary true if the instance is primary, false if it is not
53 */
54 public void modifyPrimary(boolean isPrimary);
Jonathan Hart0b04bed2014-10-16 16:39:19 -070055}