blob: ee0fac1662597922a679d8fc3b329bdc6bbeaad1 [file] [log] [blame]
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +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.l3vpn.netl3vpn.impl;
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.ietfinettypes.rev20130715.IetfInetTypes;
23import org.onosproject.yang.gen.v1.ietfl3vpnsvc.rev20160730.IetfL3VpnSvc;
24import org.onosproject.yang.gen.v1.ietfyangtypes.rev20130715.IetfYangTypes;
25import org.onosproject.yang.gen.v1.l3vpnsvcext.rev20160730.L3VpnSvcExt;
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +053026import org.onosproject.yang.model.DefaultYangModuleId;
27import org.onosproject.yang.model.YangModuleId;
28import org.onosproject.yang.runtime.AppModuleInfo;
29import org.onosproject.yang.runtime.DefaultAppModuleInfo;
30
31import java.util.HashMap;
32import java.util.Map;
33
34/**
35 * Representation of L3VPN model registrator which registers L3VPN service
36 * model.
37 */
38@Component(immediate = true)
39public class L3VpnModelRegistrator extends AbstractYangModelRegistrator {
40
41 /**
42 * Creates L3VPN model registrator.
43 */
44 public L3VpnModelRegistrator() {
45 super(IetfL3VpnSvc.class, getAppInfo());
46 }
47
48 private static Map<YangModuleId, AppModuleInfo> getAppInfo() {
49 Map<YangModuleId, AppModuleInfo> appInfo = new HashMap<>();
Gaurav Agrawal00335032017-05-17 17:09:14 +053050 appInfo.put(new DefaultYangModuleId("ietf-inet-types", "2013-07-15"),
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +053051 new DefaultAppModuleInfo(IetfInetTypes.class, null));
Gaurav Agrawal00335032017-05-17 17:09:14 +053052 appInfo.put(new DefaultYangModuleId("ietf-l3vpn-svc", "2016-07-30"),
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +053053 new DefaultAppModuleInfo(IetfL3VpnSvc.class, null));
Gaurav Agrawal00335032017-05-17 17:09:14 +053054 appInfo.put(new DefaultYangModuleId("ietf-yang-types", "2013-07-15"),
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +053055 new DefaultAppModuleInfo(IetfYangTypes.class, null));
Gaurav Agrawal00335032017-05-17 17:09:14 +053056 appInfo.put(new DefaultYangModuleId("l3vpn-svc-ext", "2016-07-30"),
Gaurav Agrawal8dbd2732017-04-14 18:57:30 +053057 new DefaultAppModuleInfo(L3VpnSvcExt.class, null));
58 return ImmutableMap.copyOf(appInfo);
59 }
60}