blob: 9c5edcff2c175da6297ab012d9d4dd8c0bd4ff0e [file] [log] [blame]
tony-liuaff59a72016-10-21 15:41:46 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
tony-liuaff59a72016-10-21 15:41:46 +08003 *
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.tetunnel.api.tunnel.path;
18
19import org.onosproject.tetopology.management.api.TeTopologyKey;
20
21/**
22 * Representation of a TE tunnel path selection attributes.
23 */
24public interface TePathSelection {
25
26 /**
27 * Returns key of corresponding TE topology of the TE path.
28 *
29 * @return key of corresponding TE topology
30 */
31 TeTopologyKey teTopologyKey();
32
33 /**
34 * Returns cost limit of the TE path.
35 *
36 * @return cost limit
37 */
38 long costLimit();
39
40 /**
41 * Returns hop limit of the TE path.
42 *
43 * @return hop limit
44 */
45 short hopLimit();
46
47 //TODO add more attributes here.
48}