blob: b4b3732f7191da5a7c823360c54f9eeee62d7b03 [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;
Gaurav Agrawal773167e2017-05-12 14:51:19 +053027import org.onosproject.yang.model.DefaultYangModuleId;
28import org.onosproject.yang.model.YangModuleId;
29import org.onosproject.yang.runtime.AppModuleInfo;
30import org.onosproject.yang.runtime.DefaultAppModuleInfo;
31
32import java.util.HashMap;
33import java.util.Map;
34
35/**
36 * Representation of huawei model registrator which registers huawei device
37 * models.
38 */
39@Component(immediate = true)
40public class HuaweiModelRegistrator extends AbstractYangModelRegistrator {
41
42 /**
43 * Creates L3VPN model registrator.
44 */
45 public HuaweiModelRegistrator() {
46 super(NeBgpcomm.class, getAppInfo());
47 }
48
49 private static Map<YangModuleId, AppModuleInfo> getAppInfo() {
50 Map<YangModuleId, AppModuleInfo> appInfo = new HashMap<>();
51 appInfo.put(new DefaultYangModuleId("NeBgpcomm.class", "2014-00-25"),
52 new DefaultAppModuleInfo(NeBgpcomm.class, null));
53 appInfo.put(new DefaultYangModuleId("ne-bgpcomm-type", "2014-00-25"),
54 new DefaultAppModuleInfo(NeBgpcommType.class, null));
55 appInfo.put(new DefaultYangModuleId("ne-l3vpn-api", "2014-00-25"),
56 new DefaultAppModuleInfo(NeL3VpnApi.class, null));
57 appInfo.put(new DefaultYangModuleId("ne-l3vpncomm", "2014-00-25"),
58 new DefaultAppModuleInfo(NeL3Vpncomm.class, null));
59 appInfo.put(new DefaultYangModuleId("ne-l3vpncomm-type", "2014-00-25"),
60 new DefaultAppModuleInfo(NeL3VpncommType.class, null));
61 return ImmutableMap.copyOf(appInfo);
62 }
63}