blob: 3924a13b9ae03e28edd29279bd80cc12a6cb72d3 [file] [log] [blame]
Priyanka B3b695542015-10-14 17:16:27 +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 */
16package org.onosproject.bgpio.protocol;
17
18import java.util.List;
19
Shashikanth VH5dd8dbe2015-11-26 13:22:18 +053020import org.onosproject.bgpio.types.BgpValueType;
Priyanka B3b695542015-10-14 17:16:27 +053021import org.onosproject.bgpio.protocol.linkstate.NodeDescriptors;
22
23/**
24 * Abstraction of an entity providing BGP-LS Link NLRI.
25 */
Shashikanth VH5dd8dbe2015-11-26 13:22:18 +053026public interface BgpLinkLsNlri extends BgpLSNlri {
Priyanka B3b695542015-10-14 17:16:27 +053027 /**
28 * Returns local node descriptors.
29 *
30 * @return local node descriptors
31 */
Priyanka Be412a852015-11-14 17:29:06 +053032 NodeDescriptors localNodeDescriptors();
Priyanka B3b695542015-10-14 17:16:27 +053033
34 /**
35 * Returns remote node descriptors.
36 *
37 * @return remote node descriptors
38 */
Priyanka Be412a852015-11-14 17:29:06 +053039 NodeDescriptors remoteNodeDescriptors();
Priyanka B3b695542015-10-14 17:16:27 +053040
41 /**
42 * Returns link descriptors.
43 *
44 * @return link descriptors
45 */
Shashikanth VH5dd8dbe2015-11-26 13:22:18 +053046 List<BgpValueType> linkDescriptors();
Priyanka B3b695542015-10-14 17:16:27 +053047}