blob: b7ff6e48c2f0fe11cb03f54e2c572db434e7c320 [file] [log] [blame]
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -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 */
16
17package org.onosproject.net;
18
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 DisjointPath extends Path {
27
28 /**
29 * Uses backup path.
30 *
31 * @return boolean corresponding to whether request to use
32 * backup was successful.
Yuta HIGUCHI6deacbd2017-05-22 23:25:05 -070033 *
34 * @deprecated in 1.11.0
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070035 */
Yuta HIGUCHI6deacbd2017-05-22 23:25:05 -070036 @Deprecated
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070037 boolean useBackup();
38
39 /**
40 * Gets primary path.
41 *
42 * @return primary path
43 */
44 Path primary();
45
46 /**
47 * Gets secondary path.
48 *
Yuta HIGUCHIc3d69f52016-08-08 11:52:52 -070049 * @return secondary path, or null if there is no secondary path available.
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070050 */
51 Path backup();
52}