blob: a0f04cedc0e5cabe1b7d2cc2a068e47084b1dc9f [file] [log] [blame]
janani bd821b182017-03-30 16:34:49 +05301/*
2 * Copyright 2017-present 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 */
16
17package org.onosproject.drivers.huawei;
18
19import org.onosproject.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.instance.rev20160623.ietfnetworkinstance.devices.DeviceKeys;
20import org.onosproject.yang.model.KeyInfo;
21
22/**
23 * Representation of utility for huawei driver's L3VPN.
24 */
25public final class L3VpnUtil {
26
27 // No instantiation.
28 private L3VpnUtil() {
29 }
30
31 /**
32 * Returns the device id from the instance key.
33 *
34 * @param key instance key
35 * @return device id
36 */
37 static String getDevIdFromIns(KeyInfo key) {
38 return ((DeviceKeys) key).deviceid();
39 }
40}