blob: dedb53a76a0411ad819a4639466ba0e3e620b3f4 [file] [log] [blame]
Aihua Guo1ce2dd12016-08-12 23:37:44 -04001/*
2 * Copyright 2016 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.tetopology.management.api.node;
17
18/**
19 * The termination capabilities between tunnel-termination-point
20 * and link termination-point.
21 */
22public class TerminationCapability {
23 // See reference - org.onosproject.yang.gen.v1.urn.ietf.params.xml.ns.yang
24 // .ietf.te.topology.rev20160708.ietftetopology.augmentednwnode.te
25 //.tunnelterminationpoint.config.DefaultTerminationCapability
26 private TerminationPointKey linkTpId;
27 //List<MaxLspBandwidth> maxLspBandwidth
28 // TODO - to be extended per future standard definitions
29
30}