blob: fdff4e01ca763ca5c66a2e52dad4a0a0bfa30682 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net;
tom43387f32014-08-27 14:42:43 -070017
18import java.util.List;
19
20/**
21 * Representation of a contiguous directed path in a network. Path comprises
22 * of a sequence of links, where adjacent links must share the same device,
23 * meaning that destination of the source of one link must coincide with the
24 * destination of the previous link.
25 */
26public interface Path extends Link {
27
28 /**
29 * Returns sequence of links comprising the path.
30 *
31 * @return list of links
32 */
33 List<Link> links();
34
tom97937552014-09-11 10:48:42 -070035 /**
36 * Returns the path cost as a unit-less value.
37 *
38 * @return unit-less path cost
39 */
40 double cost();
41
tom43387f32014-08-27 14:42:43 -070042}