blob: 936b7e8cd6a1630af67fd781e79909285eb3b9b9 [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;
21
22/**
23 * Service interface exported by SDN-IP.
24 */
25public interface SdnIpService {
26 /**
27 * Gets the BGP routes.
28 *
29 * @return the BGP routes
30 */
31 public Collection<BgpRouteEntry> getBgpRoutes();
32
33 /**
34 * Gets all the routes known to SDN-IP.
35 *
36 * @return the SDN-IP routes
37 */
38 public Collection<RouteEntry> getRoutes();
Jonathan Hartec2df012014-10-23 16:40:24 -070039
40 /**
41 * Changes whether this SDN-IP instance is the primary or not based on the
42 * boolean parameter.
43 *
44 * @param isPrimary true if the instance is primary, false if it is not
45 */
46 public void modifyPrimary(boolean isPrimary);
Jonathan Hart0b04bed2014-10-16 16:39:19 -070047}