blob: 22cec155c9117b6ef9bbe07b220781db1bf96fea [file] [log] [blame]
Madan Jampanic27b6b22016-02-05 11:36:31 -08001/*
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.iptopology.api;
17
18import org.onosproject.net.Annotated;
19import org.onosproject.net.NetworkResource;
20import org.onosproject.net.Provided;
21
22/**
23 * Abstraction of a network ip link.
24 */
25public interface IpLink extends Annotated, Provided, NetworkResource {
26
27 /**
28 * Returns source termination point of link.
29 *
30 * @return source termination point of link
31 */
32 TerminationPoint src();
33
34 /**
35 * Returns destination termination point of link.
36 *
37 * @return destination termination point of link
38 */
39 TerminationPoint dst();
40
41 /**
42 * Returns link identifier details.
43 *
44 * @return link identifier details
45 */
46 IpLinkIdentifier linkIdentifier();
47
48 /**
49 * Returns the link traffic engineering parameters.
50 *
51 * @return links traffic engineering parameters
52 */
53 LinkTed linkTed();
Satish Kf6d87cb2015-11-30 19:59:22 +053054}