blob: 8503bee8ffc8da2ea005262dae762da0ad9429ee [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 */
Jonathan Hart0b04bed2014-10-16 16:39:19 -070016package org.onlab.onos.sdnip;
17
18import java.util.Collection;
19
20import org.onlab.onos.sdnip.bgp.BgpRouteEntry;
Pavlin Radoslavov0c84da82014-11-07 17:53:34 -080021import org.onlab.onos.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}