blob: 8b9c2c661832510758ed78260cad7ce2ad7ad6d9 [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 * Default implementation of TE path selection.
23 */
24public class DefaultTePathSelection implements TePathSelection {
25
26 private final TeTopologyKey teTopologyKey;
27 private final long costLimit;
28 private final short hopLimit;
29
30 /**
31 * Creates a default implementation of TE path selection with supplied
32 * information.
33 *
34 * @param teTopologyKey key of corresponding TE topology
35 * @param costLimit cost limit of the TE path
36 * @param hopLimit hot limit of the TE path
37 */
38 public DefaultTePathSelection(TeTopologyKey teTopologyKey,
39 long costLimit, short hopLimit) {
40 this.teTopologyKey = teTopologyKey;
41 this.costLimit = costLimit;
42 this.hopLimit = hopLimit;
43 }
44
45 @Override
46 public TeTopologyKey teTopologyKey() {
47 return teTopologyKey;
48 }
49
50 @Override
51 public long costLimit() {
52 return costLimit;
53 }
54
55 @Override
56 public short hopLimit() {
57 return hopLimit;
58 }
59}