blob: d79a4236f02a70172adc1824238f7851262ae625 [file] [log] [blame]
Priyanka B425e3c52015-11-13 14:31:15 +05301/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16
17package org.onosproject.bgpio.protocol;
18
19import java.util.List;
20
21import org.onlab.packet.IpPrefix;
22import org.onosproject.bgpio.protocol.ver4.BgpPathAttributes;
23
24/**
25 * Abstraction of an entity providing BGP Update Message.
26 */
Shashikanth VH5dd8dbe2015-11-26 13:22:18 +053027public interface BgpUpdateMsg extends BgpMessage {
Priyanka B425e3c52015-11-13 14:31:15 +053028 /**
29 * Returns path attributes in BGP Update Message.
30 *
31 * @return path attributes in BGP Update Message
32 */
33 BgpPathAttributes bgpPathAttributes();
34
35 /**
36 * Returns withdrawn Routes.
37 *
38 * @return withdrawn Routes
39 */
40 List<IpPrefix> withdrawnRoutes();
41
42 /**
43 * Returns NLRI list of prefix.
44 *
45 * @return NLRI list of prefix
46 */
47 List<IpPrefix> nlri();
48}