blob: 912d068b9bd878f4023fe2e5293a052d74b5f489 [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
Gaurav Agrawal55880572017-11-15 18:41:49 +053017package org.onosproject.models.huawei;
Gaurav Agrawal773167e2017-05-12 14:51:19 +053018
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() {
Gaurav Agrawal55880572017-11-15 18:41:49 +053048 super(HuaweiModelRegistrator.class, getAppInfo());
Gaurav Agrawal773167e2017-05-12 14:51:19 +053049 }
50
51 private static Map<YangModuleId, AppModuleInfo> getAppInfo() {
52 Map<YangModuleId, AppModuleInfo> appInfo = new HashMap<>();
Gaurav Agrawal55880572017-11-15 18:41:49 +053053 appInfo.put(new DefaultYangModuleId("ne-bgpcomm", "2014-12-25"),
Gaurav Agrawal773167e2017-05-12 14:51:19 +053054 new DefaultAppModuleInfo(NeBgpcomm.class, null));
Gaurav Agrawal55880572017-11-15 18:41:49 +053055 appInfo.put(new DefaultYangModuleId("ne-bgpcomm-type", "2014-12-25"),
Gaurav Agrawal773167e2017-05-12 14:51:19 +053056 new DefaultAppModuleInfo(NeBgpcommType.class, null));
Gaurav Agrawal55880572017-11-15 18:41:49 +053057 appInfo.put(new DefaultYangModuleId("ne-l3vpn-api", "2014-12-25"),
Gaurav Agrawal773167e2017-05-12 14:51:19 +053058 new DefaultAppModuleInfo(NeL3VpnApi.class, null));
Gaurav Agrawal55880572017-11-15 18:41:49 +053059 appInfo.put(new DefaultYangModuleId("ne-l3vpncomm", "2014-12-25"),
Gaurav Agrawal773167e2017-05-12 14:51:19 +053060 new DefaultAppModuleInfo(NeL3Vpncomm.class, null));
Gaurav Agrawal55880572017-11-15 18:41:49 +053061 appInfo.put(new DefaultYangModuleId("ne-l3vpncomm-type", "2014-12-25"),
Gaurav Agrawal773167e2017-05-12 14:51:19 +053062 new DefaultAppModuleInfo(NeL3VpncommType.class, null));
Gaurav Agrawal55880572017-11-15 18:41:49 +053063 appInfo.put(new DefaultYangModuleId("ne-tnlm", "2014-12-25"),
janani b9ed76be2017-08-29 19:11:33 +053064 new DefaultAppModuleInfo(NeTnlm.class, null));
Gaurav Agrawal55880572017-11-15 18:41:49 +053065 appInfo.put(new DefaultYangModuleId("ne-tnlm-type", "2014-12-25"),
janani b9ed76be2017-08-29 19:11:33 +053066 new DefaultAppModuleInfo(NeTnlmType.class, null));
Gaurav Agrawal773167e2017-05-12 14:51:19 +053067 return ImmutableMap.copyOf(appInfo);
68 }
69}