blob: 9f175e885d903dfa64bde1ff108adcb36e6a1815 [file] [log] [blame]
Gaurav Agrawal773167e2017-05-12 14:51:19 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Gaurav Agrawal773167e2017-05-12 14:51:19 +05303 *
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 com.google.common.collect.ImmutableMap;
20import org.apache.felix.scr.annotations.Component;
21import org.onosproject.yang.AbstractYangModelRegistrator;
Vidyashree Rama04147ca2017-05-26 11:32:47 +053022import org.onosproject.yang.gen.v1.nebgpcomm.rev20141225.NeBgpcomm;
23import org.onosproject.yang.gen.v1.nebgpcommtype.rev20141225.NeBgpcommType;
24import org.onosproject.yang.gen.v1.nel3vpnapi.rev20141225.NeL3VpnApi;
25import org.onosproject.yang.gen.v1.nel3vpncomm.rev20141225.NeL3Vpncomm;
26import org.onosproject.yang.gen.v1.nel3vpncommtype.rev20141225.NeL3VpncommType;
janani b9ed76be2017-08-29 19:11:33 +053027import org.onosproject.yang.gen.v1.netnlm.rev20141225.NeTnlm;
28import org.onosproject.yang.gen.v1.netnlmtype.rev20141225.NeTnlmType;
Gaurav Agrawal773167e2017-05-12 14:51:19 +053029import org.onosproject.yang.model.DefaultYangModuleId;
30import org.onosproject.yang.model.YangModuleId;
31import org.onosproject.yang.runtime.AppModuleInfo;
32import org.onosproject.yang.runtime.DefaultAppModuleInfo;
33
34import java.util.HashMap;
35import java.util.Map;
36
37/**
38 * Representation of huawei model registrator which registers huawei device
39 * models.
40 */
41@Component(immediate = true)
42public class HuaweiModelRegistrator extends AbstractYangModelRegistrator {
43
44 /**
45 * Creates L3VPN model registrator.
46 */
47 public HuaweiModelRegistrator() {
48 super(NeBgpcomm.class, getAppInfo());
49 }
50
51 private static Map<YangModuleId, AppModuleInfo> getAppInfo() {
52 Map<YangModuleId, AppModuleInfo> appInfo = new HashMap<>();
53 appInfo.put(new DefaultYangModuleId("NeBgpcomm.class", "2014-00-25"),
54 new DefaultAppModuleInfo(NeBgpcomm.class, null));
55 appInfo.put(new DefaultYangModuleId("ne-bgpcomm-type", "2014-00-25"),
56 new DefaultAppModuleInfo(NeBgpcommType.class, null));
57 appInfo.put(new DefaultYangModuleId("ne-l3vpn-api", "2014-00-25"),
58 new DefaultAppModuleInfo(NeL3VpnApi.class, null));
59 appInfo.put(new DefaultYangModuleId("ne-l3vpncomm", "2014-00-25"),
60 new DefaultAppModuleInfo(NeL3Vpncomm.class, null));
61 appInfo.put(new DefaultYangModuleId("ne-l3vpncomm-type", "2014-00-25"),
62 new DefaultAppModuleInfo(NeL3VpncommType.class, null));
janani b9ed76be2017-08-29 19:11:33 +053063 appInfo.put(new DefaultYangModuleId("ne-tnlm", "2014-00-25"),
64 new DefaultAppModuleInfo(NeTnlm.class, null));
65 appInfo.put(new DefaultYangModuleId("ne-tnlm-type", "2014-00-25"),
66 new DefaultAppModuleInfo(NeTnlmType.class, null));
Gaurav Agrawal773167e2017-05-12 14:51:19 +053067 return ImmutableMap.copyOf(appInfo);
68 }
69}