blob: aa71f02da4bf67a095e68a425a56e484a24d6f64 [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 /**
Pavlin Radoslavov3a0a52e2015-01-06 17:41:37 -080035 * Gets the selected IPv4 BGP routes among all BGP sessions.
Jonathan Hart0b04bed2014-10-16 16:39:19 -070036 *
Pavlin Radoslavov3a0a52e2015-01-06 17:41:37 -080037 * @return the selected IPv4 BGP routes among all BGP sessions
Jonathan Hart0b04bed2014-10-16 16:39:19 -070038 */
Pavlin Radoslavov3a0a52e2015-01-06 17:41:37 -080039 public Collection<BgpRouteEntry> getBgpRoutes4();
Jonathan Hart0b04bed2014-10-16 16:39:19 -070040
41 /**
Pavlin Radoslavov3a0a52e2015-01-06 17:41:37 -080042 * Gets the selected IPv6 BGP routes among all BGP sessions.
Jonathan Hart0b04bed2014-10-16 16:39:19 -070043 *
Pavlin Radoslavov3a0a52e2015-01-06 17:41:37 -080044 * @return the selected IPv6 BGP routes among all BGP sessions
Jonathan Hart0b04bed2014-10-16 16:39:19 -070045 */
Pavlin Radoslavov3a0a52e2015-01-06 17:41:37 -080046 public Collection<BgpRouteEntry> getBgpRoutes6();
47
48 /**
49 * Gets all IPv4 routes known to SDN-IP.
50 *
51 * @return the SDN-IP IPv4 routes
52 */
53 public Collection<RouteEntry> getRoutes4();
54
55 /**
56 * Gets all IPv6 routes known to SDN-IP.
57 *
58 * @return the SDN-IP IPv6 routes
59 */
60 public Collection<RouteEntry> getRoutes6();
Jonathan Hartec2df012014-10-23 16:40:24 -070061
62 /**
63 * Changes whether this SDN-IP instance is the primary or not based on the
64 * boolean parameter.
65 *
66 * @param isPrimary true if the instance is primary, false if it is not
67 */
68 public void modifyPrimary(boolean isPrimary);
Jonathan Hart0b04bed2014-10-16 16:39:19 -070069}